21 lines
384 B
SCSS
21 lines
384 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: var(--spacing-3, 24px);
|
|
gap: var(--spacing-lg, 24px);
|
|
|
|
border-radius: var(--radius-minimal, 8px);
|
|
background: var(--primary-weak-higlight, #e5eefa);
|
|
|
|
text-align: center;
|
|
|
|
svg {
|
|
width: 32px;
|
|
stroke: var(--primary-weak-contrast);
|
|
}
|
|
}
|