Skip to content

Commit

Permalink
Tons of little fixes for things
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Aug 4, 2024
1 parent 6b69432 commit 6920055
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Helium/gtk-4.0/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,26 @@
@function shadow($level) {
// Elevation -1
@if $level == -1 {
@return 0 -1px 0 0 rgb(0, 0, 0, 0.14));
// Outline/Elevation 0
@return 0 -1px 0 0 rgb(0, 0, 0, 0.14);
// Outline/Elevation 0
} @else if $level == 0 {
@return 0 0 0 1px $outline;
// Elevation 1
// Elevation 1
} @else if $level == 1 {
@return 0 2px 4px 0px rgb(0, 0, 0, 0.14),
0 2px 4px 0px rgb(0, 0, 0, 0.14);
// Elevation 2
// Elevation 2
} @else if $level == 2 {
@return 0 4px 8px 0px rgb(0, 0, 0, 0.14),
0 4px 8px 0px rgb(0, 0, 0, 0.14);
// Elevation 3
// Elevation 3
} @else if $level == 3 {
@return 0 8px 16px 0px rgb(0, 0, 0, 0.14),
0 8px 16px 0px rgb(0, 0, 0, 0.14);
// Elevation 4
// Elevation 4
} @else if $level == 4 {
@return 0 14px 28px 0px rgb(0, 0, 0, 0.24);
// Elevation 5
// Elevation 5
} @else if $level == 5 {
@return 0 32px 64px 0px rgb(0, 0, 0, 0.24);
}
Expand Down

0 comments on commit 6920055

Please sign in to comment.