mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
Update beta overlay
This commit is contained in:
parent
124a0162f6
commit
d11642e402
@ -6,4 +6,19 @@
|
|||||||
color: $colorRedBright;
|
color: $colorRedBright;
|
||||||
@include Heading;
|
@include Heading;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
@include PlainText;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #555;
|
||||||
|
@include SuperSmallText;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,12 @@ import { makeDiv } from "../../../core/utils";
|
|||||||
|
|
||||||
export class HUDBetaOverlay extends BaseHUDPart {
|
export class HUDBetaOverlay extends BaseHUDPart {
|
||||||
createElements(parent) {
|
createElements(parent) {
|
||||||
this.element = makeDiv(parent, "ingame_HUD_BetaOverlay", [], "BETA VERSION");
|
this.element = makeDiv(
|
||||||
|
parent,
|
||||||
|
"ingame_HUD_BetaOverlay",
|
||||||
|
[],
|
||||||
|
"<h2>CLOSED BETA VERSION</h2><span>This version is unstable, might crash and is not final!</span>"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
initialize() {}
|
initialize() {}
|
||||||
|
Loading…
Reference in New Issue
Block a user