blob: f0fe3502381e6f951ed5b6937ca8d6e52b68081e (
plain)
1
2
3
4
5
6
7
8
9
|
.clickable-rows tbody a {
display: block;
padding: 0 1em 0;
text-decoration: none;
transition: all 0.25s ease-out;
}
.clickable-rows tbody tr:hover a {
background-color: var(--secondary-container);
}
|