22 lines
397 B
SCSS
22 lines
397 B
SCSS
.listContentWrapper {
|
|
padding: 0 5px;
|
|
background: #fafafa;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
// background-color: red;
|
|
|
|
.recommendTextWrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 22px 10px;
|
|
}
|
|
|
|
.recommendText {
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
}
|
|
} |