ThumbNavigation: improve styles
This commit is contained in:
parent
e4b2021e8e
commit
2e0316cf76
1 changed files with 9 additions and 3 deletions
|
@ -64,19 +64,25 @@
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
padding-bottom: env(safe-area-inset-bottom); /* iOS PWA */
|
padding-bottom: env(safe-area-inset-bottom); /* iOS PWA */
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: var(--background-color);
|
||||||
|
|
||||||
&::before,
|
&::before,
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
&__link {
|
&__link {
|
||||||
padding: 10px;
|
padding: 8px 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: end;
|
||||||
color: var(--primary-text-color);
|
color: var(--primary-text-color);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
|
Loading…
Reference in a new issue