From 7a60ffb3c47cbc88a3b4d84f7299b86977a393cf Mon Sep 17 00:00:00 2001 From: "jmt-gh)" <13617455+jmt-gh@users.noreply.github.com> Date: Sun, 19 Jun 2022 17:10:15 -0700 Subject: [PATCH] update UsersTable styling --- client/components/tables/UsersTable.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/client/components/tables/UsersTable.vue b/client/components/tables/UsersTable.vue index 79e574d5..deef2ad9 100644 --- a/client/components/tables/UsersTable.vue +++ b/client/components/tables/UsersTable.vue @@ -191,8 +191,16 @@ export default { padding: 0px 8px; } +#accounts tr:first-child { + background-color: #272727; +} + #accounts tr:nth-child(even) { - background-color: #3a3a3a; + background-color: #373838; +} + +#accounts tr:nth-child(odd) { + background-color: #2f2f2f; } #accounts tr:hover { @@ -204,6 +212,6 @@ export default { font-weight: 600; padding-top: 5px; padding-bottom: 5px; - background-color: #333; + background-color: #272727 } \ No newline at end of file