INIT: initial commit

This commit is contained in:
Fiona Lena Urban 2025-06-03 18:05:45 +02:00
parent bdcf50ca0b
commit 78e0ff6ac9
10 changed files with 217 additions and 8 deletions

View file

@ -0,0 +1,27 @@
.MoodDropdown {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 4rem;
& > button {
all: unset;
--background: var(--clr-empty-light);
--color: var(--clr-empty-dark);
font-family: 'Delius', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: var(--background);
color: var(--color);
& span {
font-size: .8rem;
}
& .icon {
font-size: 2rem;
}
}
}