mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 12:52:13 +01:00
22 lines
453 B
SCSS
22 lines
453 B
SCSS
@import "variables.scss";
|
|
.tutorial {
|
|
display: grid;
|
|
gap: 70px;
|
|
grid-template-columns: $tutorial-content-table-width minmax(0px, 1fr) $tutorial-sidebar-width;
|
|
margin: 0px auto;
|
|
max-width: 1800px;
|
|
padding: 0px 24px;
|
|
|
|
@media (max-width: $tutorial-breakpoint-1) {
|
|
grid-template-columns: $tutorial-content-table-width 1fr;
|
|
}
|
|
|
|
@media (max-width: $tutorial-breakpoint-2) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.tutorialContent {
|
|
min-width: 0;
|
|
}
|
|
}
|