24 lines
305 B
SCSS
24 lines
305 B
SCSS
.root {
|
|
padding: 64px;
|
|
|
|
.content {
|
|
display: flex;
|
|
gap: 48px;
|
|
flex-direction: column;
|
|
margin-top: 48px;
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
.separator {
|
|
height: 1px;
|
|
background-color: var(--grey-medium);
|
|
}
|
|
}
|
|
.bottom {
|
|
margin-top: 48px;
|
|
}
|
|
}
|