diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-12 17:16:41 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-12 17:16:41 +0000 |
commit | b7aafa9179ad54049d47d7dae76c9be2cb5b93a5 (patch) | |
tree | d0a403e98a2e1488413f8458d8b465aa050dee8e /ui/html/base.tmpl.html | |
parent | 4195d89d3f56d463fd5eb751a580e7e57f3e82a3 (diff) |
More styling - reverted from gray background
Have moved to white background and given the whole content a padding on
the left and right. Have commented out the table width styling for now
as it's now required but want to leave it in there for the forseeable as
I'm sure I will come back to it.
Diffstat (limited to 'ui/html/base.tmpl.html')
-rw-r--r-- | ui/html/base.tmpl.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html index 58122a0..450f9c8 100644 --- a/ui/html/base.tmpl.html +++ b/ui/html/base.tmpl.html @@ -10,12 +10,14 @@ <title>{{ template "title" .}} - DED</title> </head> <body> - <header> - {{ template "nav" . }} - </header> - <main> - {{ template "main" . }} <!-- DONT FORGET THE DOT!!! --> - </main> + <div class="content"> + <header> + {{ template "nav" . }} + </header> + <main> + {{ template "main" . }} <!-- DONT FORGET THE DOT!!! --> + </main> + </div> </body> </html> {{ end }} |