mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
42 lines
625 B
SCSS
42 lines
625 B
SCSS
// OMG
|
|
// We can't import foundation components?
|
|
// See https://github.com/zurb/foundation/issues/3855#issuecomment-30372252
|
|
|
|
@import "variables";
|
|
@import "components/global";
|
|
@import "components/buttons";
|
|
@import "components/panels";
|
|
|
|
#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;
|
|
}
|
|
}
|
|
}
|