From 2f63f629add5d24f8c01f309c7cae43b667b0c2a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 9 May 2023 13:53:33 +0200 Subject: [PATCH] Fix subscribe button responsive --- .../subscribe-button.component.scss | 6 ++++++ server/tests/api/videos/videos-overview.ts | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss b/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss index 972731116..a39ce90e3 100644 --- a/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss +++ b/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss @@ -79,6 +79,12 @@ cursor: pointer; } + .dropdown-item { + @media screen and (max-width: $mobile-view) { + white-space: normal; + } + } + .dropdown-item-neutral { cursor: default; diff --git a/server/tests/api/videos/videos-overview.ts b/server/tests/api/videos/videos-overview.ts index c012d47c3..6e723c510 100644 --- a/server/tests/api/videos/videos-overview.ts +++ b/server/tests/api/videos/videos-overview.ts @@ -29,7 +29,7 @@ describe('Test a videos overview', function () { }) it('Should upload 5 videos in a specific category, tag and channel but not include them in overview', async function () { - this.timeout(30000) + this.timeout(60000) await wait(3000) @@ -47,7 +47,7 @@ describe('Test a videos overview', function () { }) it('Should upload another video and include all videos in the overview', async function () { - this.timeout(30000) + this.timeout(60000) { for (let i = 1; i < 6; i++) { -- 2.41.0