mirror of
https://github.com/strapi/strapi.git
synced 2025-09-22 14:59:07 +00:00
11 lines
283 B
SCSS
Executable File
11 lines
283 B
SCSS
Executable File
/* Import */
|
|
@import '../../styles/variables/variables';
|
|
|
|
.content { /* stylelint-ignore */
|
|
background: $content-background;
|
|
min-height: calc(100vh - #{$header-height});
|
|
width: calc(100vw - #{$left-menu-width});
|
|
margin-top: $header-height;
|
|
margin-left: $left-menu-width;
|
|
}
|