Skip to content

Commit

Permalink
v1.6.5 (#94)
Browse files Browse the repository at this point in the history
* update dependencies

* style: update volume slider
  • Loading branch information
nini22P committed Apr 15, 2024
1 parent e0b8160 commit 008f222
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "omp",
"description": "OneDrive Media Player",
"private": true,
"version": "1.6.4",
"version": "1.6.5",
"scripts": {
"dev": "webpack serve",
"build": "webpack --mode=production --node-env=production",
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Player/PlayerControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ const PlayerControl = ({ player }: { player: HTMLVideoElement | null }) => {
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
padding: '1.5rem 1rem 2rem 1rem',
gap: '1.5em',
padding: '1rem 0.5rem 1rem 0.5rem',
gap: '1em',
}}
>
{volume}
Expand All @@ -309,7 +309,7 @@ const PlayerControl = ({ player }: { player: HTMLVideoElement | null }) => {
max={100}
onChange={(_, value) => updateVolume(value as number)}
sx={{
minHeight: '200px',
minHeight: '160px',
}}
/>
</Box>
Expand Down

0 comments on commit 008f222

Please sign in to comment.