File size: 438 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
// =======================
// Layout
// =======================
:root {
// Masterbar
--masterbar-height: 46px;
--masterbar-checkout-height: 72px;
@media only screen and (min-width: 782px) {
--masterbar-height: 32px;
}
// Sidebar size limits
--sidebar-width-max: 272px;
--sidebar-width-min: 228px;
}
// =======================
// Components
// =======================
// Badge
$badge-padding-x: 11px;
$badge-padding-y: 2px;
|