Skip to content

Commit

Permalink
_functions.scss - Fix glow bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Jun 25, 2024
1 parent a068e69 commit 467983b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Helium/gtk-4.0/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,12 @@
// Sunken controls
@if $level == -1 {
@return
0 -2px 0 0 rgb(0, 0, 0, 0.1),
0 -1px 2px 0 rgb(0, 0, 0, 0.05),
0 1px 2px 0 rgb(255, 255, 255, 0.05),
0 2px 0 0 rgb(255, 255, 255, 0.1);
0 -2px 0 0 rgb(0, 0, 0, 0.1),
0 -1px 0 0 rgb(0, 0, 0, 0.05),
0 -2px 0 0 rgb(0, 0, 0, 0.025),
0 2px 0 0 rgb(255, 255, 255, 0.025),
0 1px 0 0 rgb(255, 255, 255, 0.05),
0 2px 0 0 rgb(255, 255, 255, 0.1);
// Outline border
} @else if $level == 0 {
@return
Expand Down

0 comments on commit 467983b

Please sign in to comment.