]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Full list of includes for Sass docs 9506/head
authorJeremy Englert <jeremy@cmsadgroup.com>
Thu, 15 Dec 2016 08:11:50 +0000 (01:11 -0700)
committerJeremy Englert <jeremy@cmsadgroup.com>
Thu, 15 Dec 2016 08:11:50 +0000 (01:11 -0700)
docs/pages/sass.md

index 093f6e4054ae4e43fe27c8c7b2bb0a3fd60c6a42..a8bdbc44eaac48bc0af78c140f42229dca66424c 100644 (file)
@@ -100,17 +100,50 @@ Each component has an **export mixin** which prints out the CSS for that compone
 @include foundation-everything;
 ```
 
-Our [starter projects](starter-projects.html) include the full list of imports, making it easy to comment out the components you don't need.
+Our [starter projects](starter-projects.html) include the full list of imports, making it easy to comment out the components you don't need. A full list is also included below. 
 
 ```scss
 @import 'foundation';
 
 @include foundation-global-styles;
 @include foundation-grid;
+@include foundation-flex-grid;
+@include foundation-flex-classes;
 @include foundation-typography;
-@include foundation-button;
 @include foundation-forms;
-// And so on...
+@include foundation-button;
+@include foundation-accordion;
+@include foundation-accordion-menu;
+@include foundation-badge;
+@include foundation-breadcrumbs;
+@include foundation-button-group;
+@include foundation-callout;
+@include foundation-card;
+@include foundation-close-button;
+@include foundation-menu;
+@include foundation-menu-icon;
+@include foundation-drilldown-menu;
+@include foundation-dropdown;
+@include foundation-dropdown-menu;
+@include foundation-responsive-embed;
+@include foundation-label;
+@include foundation-media-object;
+@include foundation-off-canvas;
+@include foundation-orbit;
+@include foundation-pagination;
+@include foundation-progress-bar;
+@include foundation-slider;
+@include foundation-sticky;
+@include foundation-reveal;
+@include foundation-switch;
+@include foundation-table;
+@include foundation-tabs;
+@include foundation-thumbnail;
+@include foundation-title-bar;
+@include foundation-tooltip;
+@include foundation-top-bar;
+@include foundation-visibility-classes;
+@include foundation-float-classes;
 ```
 
 ---