mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 02:17:36 +01:00
23 lines
437 B
SCSS
23 lines
437 B
SCSS
|
// ===========================================================================
|
||
|
// SMALL TABLET AND UP
|
||
|
|
||
|
|
||
|
|
||
|
@media only screen and (min-width: $small-tablet) {
|
||
|
// FOUNDATION
|
||
|
|
||
|
// LAYOUT
|
||
|
@include grid-small-tablet;
|
||
|
|
||
|
// COMPONENTS
|
||
|
@include components-lists-small-tablet;
|
||
|
@include quick-starts-small-tablet;
|
||
|
|
||
|
// REGIONS
|
||
|
@include navigation-small-tablet;
|
||
|
|
||
|
// PAGES
|
||
|
|
||
|
// HELPERS
|
||
|
@include placeholder-selectors-small-tablet;
|
||
|
}
|