Added marker add modal

This commit is contained in:
Alexis
2024-01-07 00:31:20 +01:00
parent 2878652158
commit da8bec44b0
8 changed files with 302 additions and 28 deletions

View File

@@ -0,0 +1,29 @@
.form-group {
label {
display: block;
margin-bottom: .35rem;
font-size: .9em;
font-weight: 500;
}
.form-input {
input[type=text],
input[type=tel],
input[type=email],
textarea {
display: block;
width: 100%;
padding: .4rem .5rem;
border: 1px solid var(--slate-300);
font-size: .8em;
border-radius: .2rem;
transition-property: box-shadow;
transition-duration: .2s;
transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
&:focus-visible {
box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--slate-300) 20%, transparent);
}
}
}
}