Skip to content

Instantly share code, notes, and snippets.

@Tiamarth
Tiamarth / scrolling-tabs_alt.css
Last active May 6, 2019 22:39
Alternate Vivaldi horizontal scrolling tabs
#tab-container:is(.top, .bottom) {
overflow-y: hidden;
overflow-x: scroll;
margin-left: 40px;
max-width: 83% !important;
}
#tab-container:is(.top, .bottom)::-webkit-scrollbar {
display: none;
}
@Tiamarth
Tiamarth / scrolling-tabs.css
Last active May 6, 2019 22:41
Trying to get Vivaldi's tabs to horizontally scroll like Firefox's
#browser.tabs-top #tabs-container,
#browser.tabs-bottom #tabs-container {
overflow-y: hidden;
overflow-x: scroll;
margin-right: 90px;
margin-left: 35px;
padding-left: 0px !important;
}
#browser.tabs-top #tabs-container::-webkit-scrollbar,