mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
23 lines
349 B
SCSS
23 lines
349 B
SCSS
|
// ===========================================================================
|
||
|
// QUICK STARTS
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
.quick-starts {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
@include at-breakpoint($break-iPad) {
|
||
|
.quick-starts {
|
||
|
@extend %horizontal-list-iPad;
|
||
|
padding-bottom: 2em;
|
||
|
|
||
|
li {
|
||
|
margin: 0;
|
||
|
width: 50%;
|
||
|
}
|
||
|
|
||
|
.description { min-height: 4em; }
|
||
|
}
|
||
|
}
|