mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
It looks ike these CSS rules are actually being re-imported multiple times, which is bloating the output.
33 lines
389 B
SCSS
33 lines
389 B
SCSS
#sidebar {
|
|
margin-top: 1.875em;
|
|
|
|
$bg: #222;
|
|
$padding: emCalc(20);
|
|
$adjust: true;
|
|
$adjust: true;
|
|
|
|
@include panel($bg, $padding, $adjust);
|
|
|
|
.content {
|
|
background: white;
|
|
}
|
|
|
|
.tabs dd a {
|
|
padding: 0.5em 1em;
|
|
}
|
|
|
|
#account {
|
|
dl {
|
|
@include clearfix;
|
|
}
|
|
|
|
dt, dd {
|
|
display: inline-block;
|
|
}
|
|
|
|
p > strong {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|