| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- @use '@growi/core/scss/bootstrap/init' as bs;
- @use './variables' as var;
- .dynamic-layout-root {
- @extend .flex-expand-vert;
- }
- .grw-bg-image-wrapper {
- position: fixed;
- width: 100%;
- height: 100%;
- img {
- object-fit: cover;
- object-position: bottom;
- }
- }
- .grw-modal-head {
- border-bottom: 1px solid transparent;
- }
- .grw-scrollable-modal-body {
- max-height: calc(100vh - 330px);
- overflow-y: scroll;
- }
- .page-wrapper {
- display: flex;
- flex-direction: column;
- }
- // padding settings for GrowiNavbarBottom
- .page-wrapper {
- padding-bottom: var.$grw-navbar-bottom-height;
- @include bs.media-breakpoint-up(md) {
- padding-bottom: unset;
- }
- }
- .main {
- margin-top: 1rem;
- @include bs.media-breakpoint-up(lg) {
- margin-top: 2rem;
- }
- }
- // printable style
- @media print {
- body {
- padding: 30px;
- }
- a:after {
- display: none !important;
- }
- .main {
- header {
- border-bottom: solid 1px bs.$secondary;
- h1 {
- font-size: 2em;
- color: black;
- }
- }
- .row {
- display: block !important;
- }
- .meta {
- margin-top: 32px;
- color: bs.$secondary;
- border-top: solid 1px bs.$gray-300;
- }
- }
- }
|