27 lines
372 B
CSS
27 lines
372 B
CSS
.finish-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
}
|
|
|
|
.finish-title {
|
|
margin: 0;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 38px;
|
|
line-height: 100%;
|
|
/* or 38px */
|
|
/* White */
|
|
color: #f2f2f2;
|
|
}
|
|
|
|
.finish-text {
|
|
margin: 0;
|
|
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 140%;
|
|
color: #c5c7ce;
|
|
}
|