feat: now playing web component
This commit is contained in:
parent
2c606a6d13
commit
a4607bccd9
28 changed files with 159 additions and 131 deletions
13
src/assets/styles/components/progress-bar.css
Normal file
13
src/assets/styles/components/progress-bar.css
Normal file
|
@ -0,0 +1,13 @@
|
|||
.progress-bar__wrapper {
|
||||
display: flex;
|
||||
background-color: rgba(217, 222, 228, .6);
|
||||
border-radius: var(--rounded-lg);
|
||||
overflow: hidden;
|
||||
height: 1rem;
|
||||
width: 100%;
|
||||
margin-bottom: .25rem;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background-color: var(--accent-color);
|
||||
}
|
Reference in a new issue