Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save TudorSfatosu/c4ad67fbc91150a52505f2d369b16aad to your computer and use it in GitHub Desktop.
Save TudorSfatosu/c4ad67fbc91150a52505f2d369b16aad to your computer and use it in GitHub Desktop.
// Helpers - TO DELETE IN PROD -- Tudor
body.single-post::before {
position: fixed;
right: 0;
bottom: 0;
padding: 5px 10px;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
font-size: 12px;
z-index: 9999;
}
@include media-breakpoint-down(xxl) {
body::before {
content: "XXL";
}
}
@include media-breakpoint-down(xl) {
body::before {
content: "XL";
}
}
@include media-breakpoint-down(lg) {
body::before {
content: "LG";
}
}
@include media-breakpoint-down(md) {
body::before {
content: "MD";
}
}
@include media-breakpoint-down(sm) {
body::before {
content: "SM";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment