mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-24 18:46:40 +07:00
24 lines
363 B
SCSS
24 lines
363 B
SCSS
@import "colors";
|
|
|
|
.logo-preview {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 58px;
|
|
|
|
width: 400px;
|
|
height: 100%;
|
|
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
z-index: 2;
|
|
background: 100% 100% no-repeat;
|
|
|
|
&.top {
|
|
background-position: 100% 0;
|
|
}
|
|
|
|
@media (max-width: $mobile_breakpoint) {
|
|
transform: scale(0.5);
|
|
transform-origin: 100% 100%;
|
|
}
|
|
}
|