diff options
author | codecalm <codecalm@gmail.com> | 2020-03-03 23:45:23 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-03-04 15:45:23 +0100 |
commit | 0690fb8c4d1dc1e14e6920e2b7983dfb57751ffe (patch) | |
tree | 6fc5e70332005474821595150584bb824d94cdf7 /style.scss | |
parent | cloud icons (diff) | |
download | tabler-icons-0690fb8c4d1dc1e14e6920e2b7983dfb57751ffe.tar.xz |
next part of icons
Diffstat (limited to 'style.scss')
-rw-r--r-- | style.scss | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -12,6 +12,8 @@ $hover: rgba(0, 0, 0, .04); * { box-sizing: border-box; + margin: 0; + padding: 0; } html { @@ -39,7 +41,11 @@ a { .container { max-width: 60rem; margin: 0 auto; - padding: 1rem + padding: 1rem; + + @media (max-width: #{$breakpoint}) { + padding: 0; + } } .row { @@ -71,6 +77,11 @@ a { padding: 2rem; background: #ffff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .1); + + @media (max-width: #{$breakpoint}) { + padding: .5rem; + box-shadow: none; + } } .icon-title { |