aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/mainmenu/MainMenu.razor
blob: a19cf567ca7b48dc3656346e0236720bfba80f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@attribute [StyleSheet]
@using Sandbox.UI
@inherits Sandbox.UI.GameMenu.DefaultGameMenu

<style>
.wip-warning {
    position: absolute;
    z-index: 1000000;
    background-color: #FF4136;
    font-family: 'Roboto';
    font-size: 40px;
    width: 100%;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}
</style>
<root class="gamemainmenu">


    <div class="wip-warning">Work in progress! Expect bugs, missing features, and general weird-ness. Things *will* break.</div>

    <div class="navigator-canvas" slot="navigator-canvas"></div>


</root>