tabsbar: Fix tab close overlay overlaping selection outline

Fixes #680
This commit is contained in:
Rafael Mardojai CM 2023-10-05 17:12:02 -05:00
parent ecac4b99d4
commit 21b40dad22
No known key found for this signature in database
GPG Key ID: 2B2DAB2A58566C84
1 changed files with 3 additions and 3 deletions

View File

@ -333,11 +333,11 @@ tab {
.tabbrowser-tab:not([pinned]) .tab-content::before { .tabbrowser-tab:not([pinned]) .tab-content::before {
border-radius: 0 6px 6px 0; border-radius: 0 6px 6px 0;
content: ""; content: "";
height: 100%; height: calc(100% - 4px);
opacity: 0; opacity: 0;
position: absolute; position: absolute;
right: 0; right: 2px;
top: 0; top: 2px;
transition: 0.2s; transition: 0.2s;
width: 55px; width: 55px;
} }