8 lines
188 B
CSS
8 lines
188 B
CSS
table tbody a {
|
|
display: block;
|
|
text-decoration: none;
|
|
transition: all 0.25s ease-out;
|
|
}
|
|
.clickable-rows tbody tr:hover a {
|
|
background-color: var(--secondary-container);
|
|
}
|