Files
explainegy-nextjs/styles/Sidebar.module.scss
Janis 06c04efcfc jh
2022-12-20 02:18:21 +01:00

31 lines
610 B
SCSS

@import "variables.scss";
.sidebar {
.stickyContainer {
position: sticky;
top: $tutorial-grid-sticky-top;
display: flex;
flex-direction: column;
row-gap: 20px;
font-size: 14px;
@media (max-width: $tutorial-breakpoint-1) {
display: none;
}
.sidebarContainer {
display: flex;
flex-direction: column;
row-gap: 5px;
background-color: $color-background-card;
border-radius: 10px;
padding: 10px 10px 15px 10px;
}
.adContainer {
background-color: #ff00003e;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
}
}