diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-09-25 17:17:55 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-10-03 16:43:34 +0100 |
commit | d3ead4876c32db442175e3d398d2dc682cd514d2 (patch) | |
tree | 7630537ac462d812ce97e9bd07ce5f7616b09134 /web | |
parent | 9839246e95ad1831f7f3ded3938cac31dc905ac4 (diff) |
More efficient horizontal spacing in dashboard-options-tabs
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_dashboard.scss | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/web/cobrands/sass/_dashboard.scss b/web/cobrands/sass/_dashboard.scss index 6827a8225..28e587c75 100644 --- a/web/cobrands/sass/_dashboard.scss +++ b/web/cobrands/sass/_dashboard.scss @@ -297,6 +297,19 @@ li { float: $left; + margin: 0 0.4em; + + &:first-child { + margin-left: 0; + } + + &:last-child { + margin-right: 0; + } + + & > * + * { + margin-left: 0.4em; + } } .pull-right { @@ -305,7 +318,7 @@ a, span, strong { display: inline-block; - padding: 0.4em 0.8em; + padding: 0.4em 0; } strong { @@ -314,6 +327,8 @@ border-bottom-color: #fff; border-radius: 0.3em 0.3em 0 0; margin-bottom: -1px; + padding-left: 0.8em; + padding-right: 0.8em; } } |