forked from yevi.org/Ghost_Ruby_Theme
15402ebadc
* Added support for hiding page title and feature image Refs https://github.com/TryGhost/Product/issues/3568
30 lines
393 B
CSS
30 lines
393 B
CSS
.site {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.site-content {
|
|
flex-grow: 1;
|
|
padding-top: 30px;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.page-template .site-content {
|
|
padding-block: 0;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.related-column {
|
|
order: 1;
|
|
}
|
|
|
|
.content-column {
|
|
order: 2;
|
|
}
|
|
|
|
.sidebar-column {
|
|
order: 3;
|
|
}
|
|
}
|