diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-12 16:51:17 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-12 16:51:17 +0000 |
commit | c0c0f5a9fb85f83a6b820e579bbd9b0b17ab47d5 (patch) | |
tree | 1c893d85a08aa24ec3c7d0fb5506c8cb0e9ac59c | |
parent | f7d5e262ac8c6903d71f38f52ae53ab5f65f0769 (diff) |
Removes the bullet from a list
This makes things much neater when the list is rendered inside a table
cell.
-rw-r--r-- | ui/static/css/main.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/static/css/main.css b/ui/static/css/main.css index 8bb7647..8432742 100644 --- a/ui/static/css/main.css +++ b/ui/static/css/main.css @@ -8,6 +8,11 @@ background: lightgray; } +.table-list { + list-style: none; +} + + nav { border-bottom: solid 3px #ccc; } @@ -28,6 +33,7 @@ a.admin-link { table#home-summary-table, table#home-summary-table a, +table#home-summary-table ul, table#home-summary-table td { background: white; } |