39 lines
577 B
CSS
39 lines
577 B
CSS
.container {
|
|
padding: 16px 32px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title {
|
|
color: #fd3761;
|
|
font-weight: 600;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.progress-bar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.progress-bar__label {
|
|
font-size: 16px;
|
|
margin-bottom: 8px;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.progress-bar__container {
|
|
display: flex;
|
|
gap: 16px;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.progress-bar__line {
|
|
width: calc(100% - 56px);
|
|
} |