1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-27 13:34:37 +04:00
Files
tabler/scss/layout/_page.scss
T
2020-02-09 16:49:37 +01:00

46 lines
621 B
SCSS

.page {
display: flex;
flex-direction: column;
position: relative;
min-height: 100vh;
}
.content {
padding-top: $content-padding-y;
padding-bottom: $content-padding-y;
flex: 1;
display: flex;
flex-direction: column;
>[class*="container"] {
flex: 1;
}
@media print {
margin: 0 !important;
}
}
.page-header {
display: flex;
align-items: center;
min-height: 2.25rem;
margin: 0 0 $card-spacer-y;
>* {
flex: 1;
}
}
.page-pretitle {
@include subheader;
}
.page-title {
margin: 0;
font-size: $h2-font-size;
font-weight: 400;
line-height: 1;
color: inherit;
}