32 lines
484 B
SCSS
32 lines
484 B
SCSS
.info-section {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: row;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
color: #121212;
|
|
background: #f3f3f3;
|
|
|
|
&--content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
&--title {
|
|
font-weight: 600 !important;
|
|
font-size: 15px !important;
|
|
line-height: 24px;
|
|
}
|
|
|
|
&--text {
|
|
font-size: 15px !important;
|
|
line-height: 24px;
|
|
}
|
|
|
|
&--close {
|
|
margin-left: auto;
|
|
cursor: pointer;
|
|
}
|
|
}
|