Skip to content

Commit

Permalink
fix: remove white block when f-scrollbar class is applied (#231)
Browse files Browse the repository at this point in the history
closes #230
  • Loading branch information
joduplessis authored May 31, 2024
1 parent 6bb9696 commit bcae1a0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/core/src/styles/utility.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@
background: var(--f-scrollbar-background);
}

.f-scrollbar::-webkit-scrollbar-corner {
background: var(--f-scrollbar-background);
width: 0;
height: 0;
border-left: 16px solid var(--f-scrollbar-background);
border-top: 16px solid var(--f-scrollbar-background);
border-bottom: 16px solid var(--f-scrollbar-background);
border-right: 16px solid var(--f-scrollbar-background);
}

/* overflow */

.f-overflow-y-auto {
Expand Down

0 comments on commit bcae1a0

Please sign in to comment.