Skip to content

Instantly share code, notes, and snippets.

View aarongustafson's full-sized avatar
👋
he/him/his

Aaron Gustafson aarongustafson

👋
he/him/his
View GitHub Profile
@media (min-width: 20em) {
.gallery__item {
float: left;
width: 45%;
width: calc( 50% - 0.69rem);
margin: 1.375rem 0 0 1.375rem;
flex: 0 0 calc( 50% - 0.69rem);
}
}
@media (min-width: 20em) and (max-width: 29.9375em) {
@media (min-width:600px) {
.primary {
float: left;
width: 68%;
}
.secondary {
float: right;
width: 32%;
}
}
.primary {
float: left;
width: 68%;
}
.secondary {
float: right;
width: 32%;
}
@media (max-width:599px) {
@charset "UTF-8";
@import "vendors/_vendors";
// Breakup Configuration
$breakup-included-blocks: ( "tiny" "small" "medium" "large" "larger" "full" );
@import "helpers/_helpers";
@import "base/_base";
@import "components/_components";
@import "pages/_pages";
@import "config";
@import "functions";
@import "variables";
@import "mixins";
@import "placeholders";
@import "breakup.scss";
$breakup-included-blocks: ( "global" );
$breakup-naked: true;
$breakup-breakpoints-allow-naked: ( "global" );
// @imports for paritals go here.
@import "breakup.scss";
$breakup-included-blocks: ("tiny" "small" "medium" "large" "larger" "full" );
// @imports for paritals go here.
@include breakup-breakpoint( "global" ) {
// some default styles
}
$breakup-breakpoints: (
"global": "screen",
"tiny": "(min-width: #{$bp-tiny-em})",
"small": "(min-width: #{$bp-small-em})",
"medium": "(min-width: #{$bp-medium-em})",
"large": "(min-width: #{$bp-large-em})",
"larger": "(min-width: #{$bp-larger-em})",
"full": "(min-width: #{$bp-full-em})"
);