mirror of
https://github.com/bspeice/speice.io
synced 2024-11-05 01:28:09 -05:00
31 lines
383 B
SCSS
31 lines
383 B
SCSS
---
|
|
# Main scss file
|
|
---
|
|
@charset "utf-8";
|
|
|
|
// Helpers
|
|
@import
|
|
'helpers/mixins',
|
|
'helpers/variables';
|
|
|
|
// Base
|
|
@import
|
|
'base/reset';
|
|
|
|
// Utilities
|
|
@import
|
|
'utilities/layout',
|
|
'utilities/separator';
|
|
|
|
// Components
|
|
@import
|
|
'components/page',
|
|
'components/article',
|
|
'components/tag',
|
|
'components/archives';
|
|
|
|
// Vendor
|
|
@import
|
|
'vendor/highlight';
|
|
|