pull/1320/merge
Даниїл Григор'єв 1 year ago committed by GitHub
commit ed53fc8097
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,6 @@
#ingame_HUD_BetaOverlay { #ingame_HUD_BetaOverlay {
position: fixed; position: fixed;
@include S(top, 70px); @include S(top, 10px);
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
color: $colorRedBright; color: $colorRedBright;
@ -13,6 +13,10 @@
justify-content: center; justify-content: center;
text-align: center; text-align: center;
&.demo {
@include S(top, 70px);
}
h2 { h2 {
@include PlainText; @include PlainText;
} }

@ -6,7 +6,7 @@ export class HUDBetaOverlay extends BaseHUDPart {
this.element = makeDiv( this.element = makeDiv(
parent, parent,
"ingame_HUD_BetaOverlay", "ingame_HUD_BetaOverlay",
[], this.root.app.restrictionMgr.isLimitedVersion() ? ["demo"] : [],
"<h2>UNSTABLE BETA VERSION</h2><span>Unfinalized & potential buggy content!</span>" "<h2>UNSTABLE BETA VERSION</h2><span>Unfinalized & potential buggy content!</span>"
); );
} }

Loading…
Cancel
Save