mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-24 01:18:01 +02:00
25 lines
381 B
SCSS
25 lines
381 B
SCSS
.variantTable {
|
|
width: 100%;
|
|
|
|
th, td {
|
|
text-align: center;
|
|
width: 100px;
|
|
}
|
|
th:first-of-type, td:first-of-type {
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
tbody tr:hover {
|
|
background-color: rgba(173, 216, 230, 0.2);
|
|
}
|
|
}
|
|
|
|
th.actions {
|
|
text-align: right;
|
|
}
|
|
|
|
td.actions {
|
|
text-align: right;
|
|
vertical-align: top;
|
|
}
|