22 lines
278 B
SCSS
22 lines
278 B
SCSS
.root {
|
|
display: flex;
|
|
gap: 104px;
|
|
justify-content: center;
|
|
|
|
max-width: 1200px;
|
|
margin: auto;
|
|
|
|
.left {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
width: 548px;
|
|
}
|
|
.separator {
|
|
width: 100%;
|
|
height: 2px;
|
|
background: var(--grey-medium);
|
|
}
|
|
}
|