Edit: For all fixes in other issues and pull requests you can check out my fork of this repo here
The tab bar height is fixed by editing the margin:
In chrome\tabbar\tabbar.css
change the following:
Line 129:
from:
margin-top: 4px !important;
to:
margin-top: -4px !important;
The new tab button will be misaligned, to fix:
Line 492:
from:
margin-inline-start: 6px !important;
to:
margin-inline-start: 4px !important;
margin-bottom: 4px !important;
margin-top: 4px !important;
The tab before:
The tab after:
If you find any issue in your browser you can edit the margins to your liking.
If you use multi-account containers you will see that the colored bar at the bottom of the tab is either gone or it's gone when switching to another tab, to fix:
In chrome\userChrome.css
add the following:
/*move multi-account containers color to the bottom of the tab*/
.tab-context-line {
margin: var(--tab-min-height) var(--inline-tab-padding) 0 !important;
}
In chrome\tabbar\tabbar.css
change the following:
Line 529:
from:
height: 2px !important;
to:
height: 6px !important;
Line 546:
from:
bottom: calc(100% - 9px) !important;
to:
bottom: calc(90% - 9px) !important;
Edit: For all fixes in other issues and pull requests you can check out my fork of this repo here
The tab bar height is fixed by editing the margin:
In
chrome\tabbar\tabbar.css
change the following:
The new tab button will be misaligned, to fix:
The tab before:
The tab after:
If you use multi-account containers you will see that the colored bar at the bottom of the tab is either gone or it's gone when switching to another tab, to fix:
In
chrome\userChrome.css
add the following:
In
chrome\tabbar\tabbar.css
change the following:
Before:
After: