24 lines
360 B
CSS
24 lines
360 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.table {
|
|
display: grid;
|
|
justify-content: stretch;
|
|
border-top: 1px solid var(--Base-Border-Subtle);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
}
|
|
|
|
.table .button {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.icon {
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.showLess .icon {
|
|
transform: rotate(180deg);
|
|
}
|