mirror of https://github.com/josh-berry/tab-stash
19 lines
435 B
Plaintext
19 lines
435 B
Plaintext
//
|
|
// METRICS - WIDTHS, HEIGHTS AND OTHER MEASUREMENTS
|
|
//
|
|
// Suffixes: *-[mpg][whlrtb]
|
|
// mpg - margin/padding/gap[within grid]
|
|
// whlrtb - width/height/left/right/top/bottom
|
|
// -border - a full border: definition (including a theme color)
|
|
//
|
|
|
|
@use-narrow-metrics: 30rem;
|
|
|
|
@import "normal.less";
|
|
@media (max-width: @use-narrow-metrics) {
|
|
@import "narrow.less";
|
|
}
|
|
html[data-metrics="compact"] {
|
|
@import "compact.less";
|
|
}
|