diff options
author | Jonas Smedegaard <dr@jones.dk> | 2016-03-04 22:54:15 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2016-04-02 15:21:57 +0200 |
commit | 5dce5323c68abab2ee8d6327c95935e7fa3adfea (patch) | |
tree | 479d7b1c89e2786139cd6e7154fe98103782d33b | |
parent | 752e07432366153d9e496337e65d002fc5c3e4fc (diff) |
Fix use cross-browser compatible inline-block.
-rw-r--r-- | map.scss | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ @import 'h5bp/helpers'; @import 'partials/leaflet'; +@import "compass/css3"; body { margin:0; @@ -36,7 +37,7 @@ h1 { } .topbar { - display: inline-block; // avoid shadowing across whole viewport + @include inline-block; // avoid shadowing across whole viewport background-color: unset; // override local styling } |