Skip to content

Commit

Permalink
Use tailwind to style MapDetails component
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrucs committed Jul 25, 2023
1 parent ba34b0a commit 516c333
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions frontend/src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,51 +3,43 @@
@tailwind utilities;

.input {
@apply
bg-white
@apply bg-white
border
border-solid
border-primary1
focus:border-primary1-light
font-main
font-main
hover:border-primary1-light
placeholder-opacity-80
p-2
rounded
w-full
;
w-full;
}

.input[readonly],
.input[disabled] {
@apply
bg-greySoft
@apply bg-greySoft
border-greySoft
focus:border-greySoft
hover:border-greySoft
;
hover:border-greySoft;
}

.input[aria-invalid] {
@apply
border-hardKO
;
@apply border-hardKO;
}
.textarea {
@apply
bg-white
@apply bg-white
border
border-solid
border-primary1
focus:border-primary1-light
font-main
font-main
h-15
hover:border-primary1-light
placeholder-opacity-80
p-2
rounded
w-full
;
w-full;
}

.hasDrawer .leaflet-bottom {
Expand Down

0 comments on commit 516c333

Please sign in to comment.