feat(style): mobile tweaks
Signed-off-by: Nikurasu <publicmail@nikurasu.gay>
This commit is contained in:
parent
c983a1b19c
commit
5faef9defc
5 changed files with 8 additions and 2 deletions
|
@ -9,7 +9,6 @@
|
|||
<body>
|
||||
<main>
|
||||
<h1 class="textWhite">{{.Title}}</h1>
|
||||
<div class="tableWrapper">
|
||||
{{ if eq .EventType "Suitwalk" }}
|
||||
{{template "suitwalk" .}}
|
||||
{{ else if eq .EventType "RegularsTable" }}
|
||||
|
@ -19,7 +18,6 @@
|
|||
{{ else if eq .EventType "SpecialEvent" }}
|
||||
{{ template "specialEvent" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
|
@ -1,6 +1,7 @@
|
|||
{{ define "regularstable" }}
|
||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||
<div class="tableWrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr class="tableHeading">
|
||||
|
@ -46,4 +47,5 @@
|
|||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{{end}}
|
|
@ -1,6 +1,7 @@
|
|||
{{ define "specialEvent" }}
|
||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||
<div class="tableWrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr class="tableHeading">
|
||||
|
@ -29,4 +30,5 @@
|
|||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{{end}}
|
|
@ -1,6 +1,7 @@
|
|||
{{define "specialEventRoles"}}
|
||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||
<div class="tableWrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr class="tableHeading">
|
||||
|
@ -63,5 +64,6 @@
|
|||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{{end}}
|
||||
{{end}}
|
|
@ -1,6 +1,7 @@
|
|||
{{define "suitwalk"}}
|
||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||
<div class="tableWrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr class="tableHeading">
|
||||
|
@ -80,5 +81,6 @@
|
|||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{end}}
|
Loading…
Reference in a new issue