Continue working on v2 of the PC sheet (w/ Material design now)

This commit is contained in:
Oliver-Akins 2024-02-27 22:49:39 -07:00
parent 6d2d02b077
commit 753d72b4e0
7 changed files with 249 additions and 23 deletions

View file

@ -0,0 +1,6 @@
@mixin elevate($height) {
background-color: var(--elevation-#{$height}dp);
-webkit-box-shadow: 0px 0px #{$height * 1.75}px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px #{$height * 1.75}px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px #{$height * 1.75}px 0px rgba(0,0,0,0.75);
}