diff options
author | Jonas Smedegaard <dr@jones.dk> | 2016-04-02 16:53:45 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2016-04-02 16:53:45 +0200 |
commit | eae62f13896d166a3418a58ed9384129fd7972f2 (patch) | |
tree | 1fbd46016b9ee8491427535f80012854c75754d9 /test.scss | |
parent | bb87ba4a7211eb4b1c378ae07a9e6fb9a34e56dc (diff) |
right-align menu only in large view.
Diffstat (limited to 'test.scss')
-rw-r--r-- | test.scss | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,8 +2,12 @@ @import 'compass/css3'; .topbar { - padding: 1.5em 6em 1.5em 0; - text-align: right; + padding: 1.5em 0; + text-align: center; + @media screen and (min-width: 701px) { + padding: 1.5em 6em 1.5em 0; + text-align: right; + } } .topbar .footer { |