27 lines
529 B
SCSS
27 lines
529 B
SCSS
section {
|
|
position: absolute;
|
|
top: 30px;
|
|
right: 45px;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
background-color: var(--bgSidebar);
|
|
border-radius: 12px 0 12px 12px;
|
|
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
|
|
padding: 8px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 32px;
|
|
padding: 4px 8px;
|
|
border-radius: 8px;
|
|
color: var(--white);
|
|
cursor: pointer;
|
|
&:hover {
|
|
background-color: var(--very-dark-blue);
|
|
color: var(--light-blue);
|
|
}
|
|
}
|