Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display zoom+fullscreen map control at first position #1008

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions frontend/src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,54 @@
@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 {
@apply mb-12;
@apply desktop:mb-0;
}

.leaflet-container .leaflet-top.leaflet-left {
@apply flex flex-col;
}

.leaflet-container .leaflet-control-zoom {
@apply order-first;
}
Loading