mirror of
https://github.com/TryGhost/Ruby.git
synced 2024-10-29 20:38:33 +02:00
26 lines
337 B
CSS
26 lines
337 B
CSS
.site {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.site-content {
|
|
flex-grow: 1;
|
|
padding-top: 30px;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.related-column {
|
|
order: 1;
|
|
}
|
|
|
|
.content-column {
|
|
order: 2;
|
|
}
|
|
|
|
.sidebar-column {
|
|
order: 3;
|
|
}
|
|
}
|