Skip to content

Commit

Permalink
Fix tab bar styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Sep 23, 2024
1 parent 13a1a95 commit e4642a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions www/hub.css
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ div.tab-bar {
position: absolute;
left: 10px;
right: calc(
154px + var(--show-lock-buttons) * 28px + var(--show-update-button) * 38px+ var(--show-feedback-button) * 38px
154px + var(--show-lock-buttons) * 28px + var(--show-update-button) * 38px + var(--show-feedback-button) * 38px
);
top: 0px;
height: 50px;
Expand Down Expand Up @@ -684,7 +684,9 @@ div.tab-bar-drag-highlight {
div.tab-bar-scroll {
position: absolute;
left: 10px;
right: 210px;
right: calc(
154px + var(--show-lock-buttons) * 28px + var(--show-update-button) * 38px + var(--show-feedback-button) * 38px
);
top: 0px;
height: 50px;
overflow: scroll;
Expand Down

0 comments on commit e4642a2

Please sign in to comment.