Feat custom multiselect (#12)

* WIP Multiselect

* Reworked Multiselect into multiple Components
- Also finished feature implementation

---------

Co-authored-by: adroslice <adriel.m.slice@gmail.com>
This commit is contained in:
Samuel Lorch 2023-04-11 19:43:09 +02:00 committed by GitHub
parent 821fd28863
commit 53fca4f340
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 315 additions and 3 deletions

View file

@ -20,6 +20,11 @@ button, .button {
min-height: 1.5rem;
}
input {
height: 1.5rem;
padding: 0.25rem;
}
form {
display: grid;
grid-template-columns: auto 1fr;
@ -67,7 +72,8 @@ button, .button {
.nav-body .button {
background-color: var(--cl-bg);
}
.button:hover, button:hover {
.button:hover, button:hover,
.button:focus, button:focus {
background-color: var(--cl-bg-hl);
}

View file

@ -3,4 +3,11 @@
}
.fade-enter-from, .fade-leave-to {
opacity: 0;
}
.fade-fast-enter-active, .fade-fast-leave-active {
transition: all 0.1s ease-out !important;
}
.fade-fast-enter-from, .fade-fast-leave-to {
opacity: 0;
}