feat: vite for builds
This commit is contained in:
parent
a262627335
commit
de2bb89710
48 changed files with 856 additions and 1184 deletions
13
src/assets/css/components/progress-bar.css
Normal file
13
src/assets/css/components/progress-bar.css
Normal file
|
@ -0,0 +1,13 @@
|
|||
.progress-bar-wrapper {
|
||||
display: flex;
|
||||
height: var(--sizing-lg);
|
||||
width: 100%;
|
||||
background-color: var(--gray-light);
|
||||
border-radius: var(--border-radius-full);
|
||||
overflow: hidden;
|
||||
|
||||
& .progress-bar {
|
||||
background-color: var(--accent-color);
|
||||
border-radius: var(--border-radius-full);
|
||||
}
|
||||
}
|
Reference in a new issue