17 lines
271 B
CSS
17 lines
271 B
CSS
:root {
|
|
--progress-top: #becbd8;
|
|
}
|
|
|
|
.progress-bar {
|
|
width: 100%;
|
|
background-color: var(--bg-input);
|
|
height: 20px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.progress-bar-progress {
|
|
background-color: var(--progress-top);
|
|
height: 20px;
|
|
border-radius: 10px;
|
|
}
|