24 lines
256 B
SCSS
24 lines
256 B
SCSS
.container {
|
|
width: 100%;
|
|
padding: 16px;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
|
|
& > .title {
|
|
line-height: 32px;
|
|
}
|
|
|
|
& > .description {
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
}
|