Skip to content

Commit 3e99a0b

Browse files
committed
Remove content-wrapper class and replace with id app
1 parent 61ca5fc commit 3e99a0b

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

internal/frontend/resources/index.css

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@
33
margin: 0;
44
}
55

6-
#app {
7-
display: flex;
8-
flex-direction: column;
9-
min-height: 100vh;
10-
max-height: 100vh;
11-
}
12-
136
/*root end*/
147

158
#logo {

internal/frontend/resources/root.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,11 @@ textarea {
136136
resize: none;
137137
}
138138

139-
.content-wrapper {
139+
#app {
140140
display: flex;
141141
flex-direction: column;
142-
height: 100%;
142+
min-height: 100vh;
143+
max-height: 100vh;
143144
}
144145

145146
.noscript {

internal/frontend/templates/error.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</head>
1313

1414
<body>
15-
<div class="content-wrapper">
15+
<div id="app">
1616
<div class="error-pane-wrapper">
1717
<div class="error-pane">
1818
<h1 class="error-title">(◕︿◕✿)</h1>

internal/frontend/templates/lobby.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</head>
2121

2222
<body>
23-
<div class="content-wrapper">
23+
<div id="app">
2424
<noscript><span class="noscript">{{.Translation.Get "requires-js"}}</span></noscript>
2525

2626
<div id="lobby">

internal/frontend/templates/robot.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</head>
2525

2626
<body>
27-
<div class="content-wrapper">
27+
<div id="app">
2828
<h1 class="error-title">(◕︿◕✿)</h1>
2929
<h2 class="error-message">You can NOT join the lobby with this browser.</h2>
3030
<a class="go-back" href="{{.RootPath}}/">Click here to get back to the Homepage</a>

0 commit comments

Comments
 (0)