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>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
<h1 class="textWhite">{{.Title}}</h1>
|
<h1 class="textWhite">{{.Title}}</h1>
|
||||||
<div class="tableWrapper">
|
|
||||||
{{ if eq .EventType "Suitwalk" }}
|
{{ if eq .EventType "Suitwalk" }}
|
||||||
{{template "suitwalk" .}}
|
{{template "suitwalk" .}}
|
||||||
{{ else if eq .EventType "RegularsTable" }}
|
{{ else if eq .EventType "RegularsTable" }}
|
||||||
|
@ -19,7 +18,6 @@
|
||||||
{{ else if eq .EventType "SpecialEvent" }}
|
{{ else if eq .EventType "SpecialEvent" }}
|
||||||
{{ template "specialEvent" . }}
|
{{ template "specialEvent" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,6 +1,7 @@
|
||||||
{{ define "regularstable" }}
|
{{ define "regularstable" }}
|
||||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||||
|
<div class="tableWrapper">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="tableHeading">
|
<tr class="tableHeading">
|
||||||
|
@ -46,4 +47,5 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{{end}}
|
{{end}}
|
|
@ -1,6 +1,7 @@
|
||||||
{{ define "specialEvent" }}
|
{{ define "specialEvent" }}
|
||||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||||
|
<div class="tableWrapper">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="tableHeading">
|
<tr class="tableHeading">
|
||||||
|
@ -29,4 +30,5 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{{end}}
|
{{end}}
|
|
@ -1,6 +1,7 @@
|
||||||
{{define "specialEventRoles"}}
|
{{define "specialEventRoles"}}
|
||||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||||
|
<div class="tableWrapper">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="tableHeading">
|
<tr class="tableHeading">
|
||||||
|
@ -63,5 +64,6 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
|
@ -1,6 +1,7 @@
|
||||||
{{define "suitwalk"}}
|
{{define "suitwalk"}}
|
||||||
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
<h1 class="textWhite">{{ .EventName }} {{ .Locals.Attendie }}</h1>
|
||||||
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
<h2 class="textWhite">{{ .Locals.Registered }}</h2>
|
||||||
|
<div class="tableWrapper">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="tableHeading">
|
<tr class="tableHeading">
|
||||||
|
@ -80,5 +81,6 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{end}}
|
{{end}}
|
Loading…
Reference in a new issue