mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
30 lines
602 B
SCSS
30 lines
602 B
SCSS
.sidebar {
|
|
.stickyContainer {
|
|
position: sticky;
|
|
top: var(--tutorial-grid-sticky-top);
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 20px;
|
|
font-size: 14px;
|
|
@media (max-width: var(--tutorial-breakpoint-1)) {
|
|
display: none;
|
|
}
|
|
.sidebarContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 5px;
|
|
background-color: var(--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%;
|
|
}
|
|
}
|
|
}
|