Skip to content

Instantly share code, notes, and snippets.

@seunghun
Forked from KittyGiraudel/main.scss
Created December 13, 2016 08:17
Show Gist options
  • Select an option

  • Save seunghun/cef685736efda78443f04cd728410940 to your computer and use it in GitHub Desktop.

Select an option

Save seunghun/cef685736efda78443f04cd728410940 to your computer and use it in GitHub Desktop.
From: Architecturing a Sass project
// 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";
@seunghun
Copy link
Copy Markdown
Author

sass 구조가 간단하지만은 않구나.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment