From 2e0316cf7609c203f681799268df600dcf431003 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 15 Oct 2021 11:35:59 -0500 Subject: [PATCH] ThumbNavigation: improve styles --- app/styles/navigation.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/styles/navigation.scss b/app/styles/navigation.scss index d764257089..4f952f9ef6 100644 --- a/app/styles/navigation.scss +++ b/app/styles/navigation.scss @@ -64,19 +64,25 @@ border-radius: 0; z-index: 999; padding-bottom: env(safe-area-inset-bottom); /* iOS PWA */ - overflow-x: scroll; + overflow-x: auto; + scrollbar-width: thin; + scrollbar-color: var(--background-color); &::before, &::after { content: ''; } + &::-webkit-scrollbar { + display: none; + } + &__link { - padding: 10px; + padding: 8px 10px; display: flex; flex-direction: column; align-items: center; - justify-content: center; + justify-content: end; color: var(--primary-text-color); text-decoration: none; font-size: 20px;