diff options
author | Hakim Cassimally <hakim@mysociety.org> | 2014-11-28 11:09:14 +0000 |
---|---|---|
committer | Hakim Cassimally <hakim@mysociety.org> | 2014-12-02 12:48:09 +0000 |
commit | 179f14727108d9be1c300d6d55b719609898d66e (patch) | |
tree | 1bd9a608ab26ce271339d5f8ee9d18a7b4fb89f6 /web | |
parent | 5b3fff8a3f6bf376422f26ba0ebcab78b3b41fc2 (diff) |
[EastSussex] Fix layout without JS
The non-js view positioned the map badly (over the issue text).
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/eastsussex/layout.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/web/cobrands/eastsussex/layout.scss b/web/cobrands/eastsussex/layout.scss index c25d5ff0c..dad118198 100644 --- a/web/cobrands/eastsussex/layout.scss +++ b/web/cobrands/eastsussex/layout.scss @@ -82,9 +82,17 @@ body.mappage { } .content { - width: 27em; + div { + max-width: 27em; + } + + // required for non-js placement + #map_box { + left: 30em; + } } + #wrapper { display: block; width: auto; |