diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 973b6a625..a20479339 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup node uses: actions/setup-node@v4 with: diff --git a/.github/workflows/pages_cleanup.yml b/.github/workflows/pages_cleanup.yml index 2ee3a32c8..58ba548a7 100644 --- a/.github/workflows/pages_cleanup.yml +++ b/.github/workflows/pages_cleanup.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: gh-pages fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2cdd60e4a..5c27de22d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install NPM dependencies run: npm install - name: Build diff --git a/src/components/MetaPreview/ActionButton/styles.less b/src/components/MetaPreview/ActionButton/styles.less index d7a7c5f25..5382c26af 100644 --- a/src/components/MetaPreview/ActionButton/styles.less +++ b/src/components/MetaPreview/ActionButton/styles.less @@ -65,7 +65,6 @@ padding: 0 1rem; .icon-container { - height: 2rem; width: 2rem; } } diff --git a/src/components/MetaPreview/styles.less b/src/components/MetaPreview/styles.less index a614acf25..3fea95a5f 100644 --- a/src/components/MetaPreview/styles.less +++ b/src/components/MetaPreview/styles.less @@ -240,6 +240,10 @@ border-radius: 2rem; } } + + .ratings { + margin-right: 0; + } } } diff --git a/src/routes/Player/usePlayer.js b/src/routes/Player/usePlayer.js index 05036f220..4ca2574ba 100644 --- a/src/routes/Player/usePlayer.js +++ b/src/routes/Player/usePlayer.js @@ -102,8 +102,8 @@ const usePlayer = (urlParams) => { args: { action: 'TimeChanged', args: { - time: Math.round(time), - duration, + time: Math.max(0, Math.round(time)), + duration: Math.max(0, Math.round(duration)), device, } } @@ -118,8 +118,8 @@ const usePlayer = (urlParams) => { args: { action: 'Seek', args: { - time: Math.round(time), - duration, + time: Math.max(0, Math.round(time)), + duration: Math.max(0, Math.round(duration)), device, } } diff --git a/src/routes/Search/styles.less b/src/routes/Search/styles.less index 278d65693..e9ccc067f 100644 --- a/src/routes/Search/styles.less +++ b/src/routes/Search/styles.less @@ -12,7 +12,7 @@ } .search-container { - height: 100%; + height: calc(100% - var(--safe-area-inset-bottom)); width: 100%; background-color: transparent;