Skip to content

Commit

Permalink
fix: broken elevation compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Jun 10, 2024
1 parent eda1422 commit 5087353
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions packages/utils/elevation/src/styles/shared.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

/// Map of elevation levels for different UI elements
$elevation: (
/**/ base level elevation * /"root": 1,
/**/ elevation for sticky or navigation elements * /"sticky": 100,
/**/ elevation for floating non-blocking elements * /"floating": 200,
/**/ elevation for blocking elements * /"overlay": 300,
/**/ elevation for high relevance floating blocking elements * /"popup": 400
/// base level elevation
"root": 1,
/// elevation for sticky or navigation elements
"sticky": 100,
/// elevation for floating non-blocking elements
"floating": 200,
/// elevation for blocking elements
"overlay": 300,
/// elevation for high relevance floating blocking elements
"popup": 400
);

0 comments on commit 5087353

Please sign in to comment.