14 lines
271 B
Plaintext
14 lines
271 B
Plaintext
.row-children {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 54px;
|
|
border-radius: var(--border-radius-mdium);
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
background-color: var(--ant-table-row-hover-bg);
|
|
transition: all 0.2s ease;
|
|
}
|
|
}
|