diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-08-14 13:44:58 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2018-10-01 07:57:22 +0100 |
commit | 138f07a6505862b80580f4d05be58485cfd5906a (patch) | |
tree | 8c374a90dac5de0b9992808f33cf8eb9cbe8c2b0 /web | |
parent | c258df35ef80c6a09804d717b3298d129839394a (diff) |
[Oxfordshire] Avoid nav menu CSS overlap for staff on mappage
Fixes mysociety/fixmystreet-commercial#1131
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss index 0e49916ac..9a831dd69 100644 --- a/web/cobrands/oxfordshire/layout.scss +++ b/web/cobrands/oxfordshire/layout.scss @@ -218,8 +218,13 @@ body.mappage { .nav-menu--main { margin-top: 0; - height: 40px; - padding: 19px 0 27px 0; + padding: 0; + height: (10 * 16px) - 70px - 4px - 1px; // $mappage-header-height minus .nav-wrapper top, minus .nav-wrapper borders + @include flex-align(center); + + li { + padding-top: 0; + } } .wrapper .table-cell { |