Update box shadow for panels.
Box shadow value should be stored and referenced as a variable.
This commit is contained in:
@@ -47,8 +47,8 @@
|
||||
}
|
||||
|
||||
@mixin shadow-panel {
|
||||
padding: $gap / 2 0;
|
||||
box-shadow: 0 6px 18px 0 rgba(144,164,183,0.3);
|
||||
padding: $gap /2 0;
|
||||
box-shadow: $box-shadow;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
@@ -57,6 +57,7 @@
|
||||
@include panel-base;
|
||||
@include panel-theme-default;
|
||||
@include panel-margin;
|
||||
@include shadow-panel;
|
||||
|
||||
.panel__content {
|
||||
margin: ($gap * 2) 0;
|
||||
|
@@ -16,7 +16,7 @@
|
||||
}
|
||||
width: 25rem;
|
||||
|
||||
box-shadow: 0 6px 18px 0 rgba(48,58,65,0.15);
|
||||
box-shadow: $box-shadow;
|
||||
|
||||
.sidenav__title {
|
||||
@include sidenav__header;
|
||||
|
Reference in New Issue
Block a user