mirror of
https://github.com/tobspr/shapez.io.git
synced 2026-02-23 08:19:21 +00:00
20 lines
491 B
SCSS
20 lines
491 B
SCSS
|
|
#ingame_HUD_PuzzleDLCLogo {
|
||
|
|
position: absolute;
|
||
|
|
@include S(width, 120px);
|
||
|
|
@include S(height, 40px);
|
||
|
|
@include S(left, 40px);
|
||
|
|
@include S(top, 7px);
|
||
|
|
|
||
|
|
& {
|
||
|
|
/* @load-async */
|
||
|
|
background: uiResource("puzzle_dlc_logo.png") center center / contain no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
@include DarkThemeOverride {
|
||
|
|
& {
|
||
|
|
/* @load-async */
|
||
|
|
background: uiResource("puzzle_dlc_logo_inverse.png") center center / contain no-repeat;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|