21 lines
414 B
SCSS
21 lines
414 B
SCSS
.section-card-paper {
|
|
padding: 16px;
|
|
margin: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 16px;
|
|
.title {
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
.icon-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
}
|
|
}
|