Skip to content
Snippets Groups Projects
Unverified Commit ba9299c6 authored by Thomas Citharel's avatar Thomas Citharel
Browse files

fix(front): fix space around input icons


Signed-off-by: default avatarThomas Citharel <tcit@tcit.fr>
parent a916d180
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,13 @@ body { ...@@ -110,7 +110,13 @@ body {
@apply border-red-500; @apply border-red-500;
} }
.input-icon-right { .input-icon-right {
right: 0.5rem; @apply right-2;
}
.input-iconspace-left {
@apply pl-8;
}
.input-iconspace-right {
@apply pr-8;
} }
.input[type="text"]:disabled, .input[type="text"]:disabled,
.input[type="email"]:disabled { .input[type="email"]:disabled {
......
...@@ -34,6 +34,8 @@ export const orugaConfig = { ...@@ -34,6 +34,8 @@ export const orugaConfig = {
sizeClass: (size: string) => { sizeClass: (size: string) => {
return `input-size-${size}`; return `input-size-${size}`;
}, },
iconLeftSpaceClass: "input-iconspace-left",
iconRightSpaceClass: "input-iconspace-right",
}, },
taginput: { taginput: {
itemClass: "taginput-item", itemClass: "taginput-item",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment