This commit is contained in:
kolaente 2020-11-28 13:11:07 +01:00
parent 6addbcf8bd
commit 693d89bf4c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 35 additions and 35 deletions

View File

@ -7,49 +7,49 @@
position: absolute; position: absolute;
z-index: 99; z-index: 99;
width: 320px; width: 320px;
background: $white; background: $white;
border-radius: $radius; border-radius: $radius;
box-shadow: $card-shadow; box-shadow: $card-shadow;
a { a {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0 .5rem; padding: 0 .5rem;
width: 100%; width: 100%;
height: 2.25rem; height: 2.25rem;
color: $text; color: $text;
transition: all $transition; transition: all $transition;
&:first-child { &:first-child {
border-radius: $radius $radius 0 0; border-radius: $radius $radius 0 0;
} }
&:hover { &:hover {
background: $light; background: $light;
} }
.text { .text {
width: 100%; width: 100%;
font-size: .85rem; font-size: .85rem;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding-right: .25rem; padding-right: .25rem;
.weekday { .weekday {
color: $text-light; color: $text-light;
text-transform: capitalize; text-transform: capitalize;
} }
} }
.icon { .icon {
width: 2rem; width: 2rem;
text-align: center; text-align: center;
} }
} }
.flatpickr-calendar { .flatpickr-calendar {
margin: 0 auto 8px; margin: 0 auto 8px;
box-shadow: none; box-shadow: none;
} }
} }
} }