11 lines
143 B
SCSS
11 lines
143 B
SCSS
|
.TableRow {
|
||
|
.open-button {
|
||
|
display: none;
|
||
|
}
|
||
|
&:hover {
|
||
|
.open-button {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|