You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
370 B
29 lines
370 B
7 years ago
|
@import '../../variables.scss';
|
||
|
|
||
|
.container {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
z-index: 10;
|
||
|
height: 100vh;
|
||
|
width: 100%;
|
||
|
background: #31343F;
|
||
|
}
|
||
|
|
||
|
.closeContainer {
|
||
|
text-align: right;
|
||
|
padding: 20px 40px 0px;
|
||
|
|
||
|
span {
|
||
|
cursor: pointer;
|
||
|
opacity: 1.0;
|
||
|
transition: 0.25s all;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
color: $white;
|
||
|
}
|
||
|
}
|