diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/bromley/layout.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/web/cobrands/bromley/layout.scss b/web/cobrands/bromley/layout.scss index 73c597a6c..bd9ae28fe 100644 --- a/web/cobrands/bromley/layout.scss +++ b/web/cobrands/bromley/layout.scss @@ -75,3 +75,27 @@ body.mappage .content { top: 0; } +// Fix location of aside sidebar +body.twothirdswidthpage { + .content { + aside { + @include box-shadow(none); + } + .sticky-sidebar { + aside { + position: absolute; + top: 0; + } + } + } +} +@media only screen and (min-width: 48em) and (max-width: 61em) { + body.twothirdswidthpage { + .content { + .sticky-sidebar { + top: auto; + } + } + } +} + |