diff options
Diffstat (limited to 'design/sass')
-rw-r--r-- | design/sass/_global.scss | 1 | ||||
-rw-r--r-- | design/sass/_header.scss | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/design/sass/_global.scss b/design/sass/_global.scss index 910cc94..2db16cd 100644 --- a/design/sass/_global.scss +++ b/design/sass/_global.scss @@ -3,7 +3,6 @@ html { } body { - border-top: 1px solid #fbf9f7; margin: 0 auto; padding: 0; overflow-x: hidden; diff --git a/design/sass/_header.scss b/design/sass/_header.scss index da9e41a..8f4b207 100644 --- a/design/sass/_header.scss +++ b/design/sass/_header.scss @@ -60,9 +60,14 @@ header[role="banner"] { .black header h1 a, .dark header h1 a { color: $body_font_light; &:before { - background: url("logo-new-@2x-treeonly.png") center -65px no-repeat; + background: url("logo-new-@2x-treeonly.png") center -75px no-repeat; background-size: 92px; } + @include breakpoint(gamma) { + &:before { + background-position-y: -65px; + } + } } |