mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 15:13:50 +00:00
adding a responsive breakpoints debug flag
This commit is contained in:
@@ -59,3 +59,4 @@
|
||||
|
||||
// CHILL custom
|
||||
@import "custom";
|
||||
@import "custom/_debug";
|
||||
|
@@ -0,0 +1,19 @@
|
||||
body {
|
||||
position: relative;
|
||||
div.responsive {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
background-color: #4a4d50;
|
||||
color: white;
|
||||
padding: 0.5em;
|
||||
z-index: 10000;
|
||||
|
||||
@media (max-width: 576px) { &::after { content: 'XS'; }}
|
||||
@media (min-width: 576px) { &::after { content: 'SM'; }}
|
||||
@media (min-width: 768px) { &::after { content: 'MD'; }}
|
||||
@media (min-width: 992px) { &::after { content: 'LG'; }}
|
||||
@media (min-width: 1200px) { &::after { content: 'XL'; }}
|
||||
@media (min-width: 1400px) { &::after { content: 'XXL'; }}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user