46 lines
853 B
SCSS
46 lines
853 B
SCSS
.container {
|
|
width: 100%;
|
|
padding: 18px 20px 25px 25px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
rgba(78, 205, 196, 0.1) 0%,
|
|
rgba(102, 126, 234, 0.1) 100%
|
|
);
|
|
border: 1px solid #4ecdc433;
|
|
border-radius: 32px;
|
|
margin-top: 34px;
|
|
display: grid;
|
|
grid-template-columns: 48px 1fr;
|
|
gap: 16px;
|
|
|
|
& > .iconContainer {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
background-color: #4ecdc433;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
& > .textContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
|
|
& > .title {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
line-height: 28px;
|
|
color: #262626;
|
|
}
|
|
|
|
& > .description {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
color: #525252;
|
|
}
|
|
}
|
|
}
|