mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
It looks ike these CSS rules are actually being re-imported multiple times, which is bloating the output.
49 lines
797 B
SCSS
49 lines
797 B
SCSS
$shop-navigation-zindex: 20;
|
|
|
|
section {
|
|
:not(shop) navigation {
|
|
box-shadow: $distributor-header-shadow;
|
|
}
|
|
}
|
|
|
|
.darkswarm navigation {
|
|
display: block;
|
|
background: $white;
|
|
position: relative;
|
|
z-index: $shop-navigation-zindex;
|
|
|
|
.details {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
min-height: 150px;
|
|
padding: 30px 0 0;
|
|
position: relative;
|
|
|
|
img {
|
|
display: block;
|
|
height: 100px;
|
|
width: 100px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
location {
|
|
@include headingFont;
|
|
}
|
|
|
|
@include breakpoint(tablet) {
|
|
location, location + small {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
#distributor_title h3 {
|
|
margin-top: 0;
|
|
padding-top: 0.45em;
|
|
|
|
@include breakpoint(tablet) {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|