mirror of
https://github.com/JHUAPL/STIXMODELER_UI.git
synced 2026-01-09 13:18:06 -05:00
29 lines
538 B
SCSS
29 lines
538 B
SCSS
@use '../../../defaults';
|
|
|
|
.mask {
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
background-color: rgba(0, 0, 0,.2);
|
|
z-index: defaults.$panel-mask-index;
|
|
|
|
.panel {
|
|
position: absolute;
|
|
width: 600px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
background-color: #fff;
|
|
box-shadow: -20px 25px 50px 0px #000;
|
|
z-index: defaults.$panel-index;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.hide-mask {
|
|
display: none;
|
|
}
|