9ac2c9182a
- Redesigned audio player bar to be mobile-friendly - Added unloading for track switching (needs to be fixed) - Added IsLoading status so loading spinner isn't hanging around when it shouldn't be - Normalized styles with scoped files (will further reduce) - Layout Cleanup - EF fixes (migrations now function for deployment) - deploy script updates (new dedicated host)
10 lines
312 B
Plaintext
10 lines
312 B
Plaintext
<div class="volume-controls">
|
|
<MudIcon Icon="@GetVolumeIcon()" Class="volume-icon"/>
|
|
<MudSlider T="double"
|
|
Min="0"
|
|
Max="1"
|
|
Step="0.01"
|
|
Value="@Volume"
|
|
ValueChanged="@VolumeChanged"
|
|
Class="volume-slider"/>
|
|
</div> |