pages/assets/css/main.scss
Zirui Zhuang b73662bf9d
add wide screen configuration (#157)
add wide screen configuration by adding a `max_width` config in `_config.yml`
2020-12-26 21:56:42 -05:00

15 lines
209 B
SCSS

---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
// Dimensions
$max-content-width: {{site.max_width}};
@import
"variables",
"themes",
"layout",
"base"
;