Last active
April 5, 2022 19:11
-
-
Save KittyGiraudel/8615243 to your computer and use it in GitHub Desktop.
From: Architecturing a Sass project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sass utilities | |
@import "helpers/variables"; | |
@import "helpers/functions"; | |
@import "helpers/mixins"; | |
@import "helpers/placeholders"; | |
// Vendors and external stylesheets | |
@import "vendors/bootstrap"; | |
@import "vendors/jquery-ui"; | |
// Base stuff | |
@import "base/reset"; | |
@import "base/typography"; | |
// Layout related stylesheets | |
@import "layout/grid"; | |
@import "layout/header"; | |
@import "layout/footer"; | |
@import "layout/sidebar"; | |
// Components and modules | |
@import "components/carousel"; | |
@import "components/buttons"; | |
@import "components/cover"; | |
@import "components/dropdown"; | |
// Page-specific stylesheets | |
@import "pages/home"; | |
@import "pages/contact"; | |
// Themes | |
@import "themes/theme"; | |
@import "themes/admin"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment