Files
web/components/TempDesignSystem/ShowMoreButton/showMoreButton.module.css
2024-10-08 15:11:53 +02:00

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);
}