diff options
| author | Henry Jameson <me@hjkos.com> | 2020-11-03 11:35:55 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-11-03 11:37:11 +0200 |
| commit | 979efb301a4bfdd1c120b2a764430f7388503fc0 (patch) | |
| tree | 974dc3510ee38a73873af7e3585551c998a20278 | |
| parent | b6a8ca44ef84b6fb78958a2af3bffd467804a061 (diff) | |
fix mobile navbar hitboxes
| -rw-r--r-- | src/components/mobile_nav/mobile_nav.vue | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index 6651fc8e..5304a500 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -110,12 +110,23 @@ } .mobile-nav-button { + display: inline-block; text-align: center; - margin: 0 1em; + padding: 0 1em; position: relative; cursor: pointer; } + .site-name { + padding: 0 .3em; + display: inline-block; + } + + .item { + /* moslty just to get rid of extra whitespaces */ + display: flex; + } + .alert-dot { border-radius: 100%; height: 8px; |
