Refactor CSS to apply hover background color to table rows

This commit is contained in:
Luis Eduardo Jeréz Girón
2024-10-14 01:01:02 -06:00
parent 76b44d46e5
commit e5c5e4e552

View File

@@ -1,4 +1,8 @@
html {
overflow-x: hidden;
overflow-y: auto;
}
.table tbody tr {
@apply hover:bg-base-200;
}