27 lines
381 B
SCSS
27 lines
381 B
SCSS
.aside {
|
|
height: fit-content;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5.6rem;
|
|
}
|
|
|
|
.aside-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 3.2rem;
|
|
background: $gray;
|
|
padding: 2.4rem 1.6rem;
|
|
}
|
|
|
|
.aside-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2.4rem;
|
|
}
|
|
|
|
.aside-calendar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|