diff options
author | Mantas <11616378+mistermantas@users.noreply.github.com> | 2018-07-31 14:20:37 +0300 |
---|---|---|
committer | Mantas <11616378+mistermantas@users.noreply.github.com> | 2018-07-31 14:20:37 +0300 |
commit | ac7737ba017bd365a89c166dc7e544f4cbed1380 (patch) | |
tree | 883feb3a5e215a67d88a86fbd9f57ace8d7cfd06 /layouts/partials | |
parent | aacd468d9e5cae4e689f9f70e932d9a496d6a6ba (diff) |
Emergency CSS bug fixes + fix #13
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/meta.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/layouts/partials/meta.html b/layouts/partials/meta.html index ef9e3af..eb4e33a 100644 --- a/layouts/partials/meta.html +++ b/layouts/partials/meta.html @@ -45,8 +45,6 @@ box-sizing: inherit; } - ::selection { background: #B4D5FF; } - hr { border: 0; border-bottom: 1px solid #ccc; @@ -200,13 +198,13 @@ } .logo img { - height: 128px; - width: auto; + height: auto; + width: 320px; } .logo--small img { - height: 64px; - width: auto; + height: auto; + width: 160px; } .tabs { border-bottom: 1px solid #ccc; } @@ -284,6 +282,9 @@ display: inline; } } + + ::selection { background: #B4D5FF; } + html { -webkit-tap-highlight-color: rgba(0,0,0, 0.25); } </style> {{ if .Site.Params.enableCustomHTML }} {{ partial "custom/meta" . }} |