1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-02-17 21:39:20 +00:00
tobspr_shapez.io/src/css/ingame_hud/puzzle_dlc_logo.scss
2021-05-25 09:24:53 +02:00

25 lines
644 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;
}
}
&.china {
/* @load-async */
background: uiResource("puzzle_dlc_logo_china.png") center center / contain no-repeat !important;
}
}