From fb75e1298869c632470c42cd7860648503e8ecac Mon Sep 17 00:00:00 2001 From: Front <27463495+Frontesque@users.noreply.github.com> Date: Sun, 6 Mar 2022 11:55:16 -0500 Subject: [PATCH] iOS fixes: Search, Logs, (and other glitches) --- .github/workflows/ci.yml | 4 ++-- NUXT/layouts/default.vue | 3 +++ NUXT/pages/logs.vue | 6 +++++- NUXT/pages/search.vue | 19 ++++++++++++++----- NUXT/plugins/youtube.js | 9 ++++----- 5 files changed, 28 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d601805..d93c1ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,11 +59,11 @@ jobs: run: npx cap update android - name: Build with Gradle working-directory: android - run: chmod +x gradlew; ./gradlew clean assemble # At the time of writing, build causes issues with capacitor plugins + run: chmod +x gradlew; ./gradlew clean build # Build causes errors / assemble makes a nonfunctional apk - name: Upload artifacts uses: actions/upload-artifact@v2 with: - name: VueTube.apk + name: android path: android/app/build/outputs/apk/release/app-release-unsigned.apk ios: diff --git a/NUXT/layouts/default.vue b/NUXT/layouts/default.vue index 51affc1..3630c1d 100644 --- a/NUXT/layouts/default.vue +++ b/NUXT/layouts/default.vue @@ -38,6 +38,9 @@ * { font-family: Arial, Helvetica, sans-serif !important; } +html, body { + overflow-x: hidden; +}