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.
27 lines
339 B
27 lines
339 B
6 years ago
|
@import '../../../styles/variables.scss';
|
||
7 years ago
|
|
||
|
.container {
|
||
|
position: relative;
|
||
|
height: 100vh;
|
||
|
background: $bluegrey;
|
||
|
}
|
||
|
|
||
|
.closeContainer {
|
||
|
text-align: right;
|
||
7 years ago
|
padding: 20px 40px 0;
|
||
7 years ago
|
|
||
|
span {
|
||
|
cursor: pointer;
|
||
7 years ago
|
opacity: 1;
|
||
7 years ago
|
transition: 0.25s all;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
color: $white;
|
||
|
}
|
||
|
}
|