13 lines
222 B
CSS
13 lines
222 B
CSS
.bar {
|
|
background-color: var(--some-white-color, #fff);
|
|
border-radius: 4rem;
|
|
height: 2rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.progress {
|
|
background-color: var(--some-black-color, #1f1f1f);
|
|
border-radius: 4rem;
|
|
height: 2rem;
|
|
}
|