16 lines
244 B
SCSS
16 lines
244 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
flex-wrap: wrap;
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-sm, 8px);
|
|
}
|
|
}
|