Skip to content
Snippets Groups Projects
Unverified Commit 9f772df6 authored by aeschylus's avatar aeschylus Committed by GitHub
Browse files

Merge pull request #2119 from ProjectMirador/delint

Refactor Material UI's box-shadow style to match our scss linter
parents f395c408 d9b69e49
No related branches found
No related tags found
No related merge requests found
......@@ -115,10 +115,14 @@
// override react-mosaic styles to mimic MUI's elevation
.mosaic {
&-tile {
box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12);
$start: rgba(0, 0, 0, .2);
$middle: rgba(0, 0, 0, .2);
$end: rgba(0, 0, 0, .2);
box-shadow: 0 1px 3px 0 $start, 0 1px 1px 0 $middle, 0 2px 1px -1px $end;
}
&-window, &-preview {
&-window,
&-preview {
box-shadow: none;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment