Merge pull request #757 from jmt-gh/update_users_table

Update UsersTable styling to match other tables
This commit is contained in:
advplyr 2022-06-22 17:30:46 -05:00 committed by GitHub
commit e02fbac4cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,11 @@ export default {
} }
#accounts tr:nth-child(even) { #accounts tr:nth-child(even) {
background-color: #3a3a3a; background-color: #373838;
}
#accounts tr:nth-child(odd) {
background-color: #2f2f2f;
} }
#accounts tr:hover { #accounts tr:hover {
@ -204,6 +208,6 @@ export default {
font-weight: 600; font-weight: 600;
padding-top: 5px; padding-top: 5px;
padding-bottom: 5px; padding-bottom: 5px;
background-color: #333; background-color: #272727
} }
</style> </style>