scroll tabs on mobile view
All checks were successful
Static / build (push) Successful in 33s

This commit is contained in:
brooke 2024-03-23 17:36:01 -04:00
parent f92120a1df
commit 28228c5b93

View file

@ -83,9 +83,25 @@ body,
.tabs {
display: flex;
overflow-x: auto;
white-space: nowrap;
padding-bottom: 2px;
}
.tab, .tab-link {
::-webkit-scrollbar {
height: 3px;
}
::-webkit-scrollbar-track {
background: #241917;
}
::-webkit-scrollbar-thumb {
background: #f3bbae;
}
.tab,
.tab-link {
cursor: pointer;
padding: 4px 15px;
border-width: 0 4px 4px 0;
@ -98,6 +114,7 @@ body,
color: #f3bbae;
text-decoration: none;
margin-right: 2.5rem;
min-width: 4.5rem;
}
.tab-link svg {