70 lines
1.4 KiB
SCSS
70 lines
1.4 KiB
SCSS
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.announcements_button {
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 20px;
|
|
border: 1px solid var(--dark_600_color);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 8px;
|
|
border-radius: 4px;
|
|
&:hover {
|
|
background-color: var(--dark_750_color);
|
|
}
|
|
&:active {
|
|
background-color: var(--dark_850_color);
|
|
}
|
|
transition: all 0.1s ease;
|
|
}
|
|
|
|
.announcements_label {
|
|
font-size: 12px;
|
|
}
|
|
.announcements_link_svg {
|
|
width: 20px;
|
|
}
|
|
|
|
|
|
|
|
.close_button_wrapper {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 100%;
|
|
transform: translate(-50%, -50%) rotate(45deg);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: end;
|
|
width: 68px;
|
|
aspect-ratio: 1 / 1;
|
|
&:hover {
|
|
background-color: #bb4448;
|
|
& .x_mark_svg {
|
|
color: var(--dark_200_color);
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
&:active {
|
|
background-color: #9c3938;
|
|
}
|
|
transition: all 0.1s ease;
|
|
}
|
|
|
|
.close_button {
|
|
// width: 100%;
|
|
// height: 100%;
|
|
}
|
|
|
|
.x_mark_svg {
|
|
width: 24px;
|
|
transform: rotate(-45deg);
|
|
color: var(--dark_700_color);
|
|
transition: transform 0.3s ease;
|
|
} |