23 lines
309 B
SCSS
23 lines
309 B
SCSS
|
#rf-logo-wrapper {
|
||
|
transition: all 0.8s ease-in-out;
|
||
|
|
||
|
&.hidden {
|
||
|
opacity: 0.0001;
|
||
|
margin-top: -100px;
|
||
|
}
|
||
|
|
||
|
.rf-logo {
|
||
|
margin: $size-64 0 $size-64 $size-32;
|
||
|
|
||
|
@include touch {
|
||
|
margin: 0;
|
||
|
max-width: 90%;
|
||
|
margin-left: 5%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include touch {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|