From 2c3abc4fa796555eb7d25f416c4f41ab3e3ad8ca Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 11 Apr 2019 11:18:19 +0200 Subject: [PATCH] Fix my account settings responsive --- .../my-account-notification-preferences.component.scss | 8 ++++++++ .../+my-account/shared/actor-avatar-info.component.scss | 6 +++++- client/src/sass/application.scss | 4 +++- client/src/sass/include/_mixins.scss | 4 ++++ 4 files changed, 20 insertions(+), 2 deletions(-) diff --git a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss index 0274f47c5..7cd5c3b46 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss +++ b/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss @@ -16,6 +16,14 @@ & > div { width: 350px; + + @media screen and (max-width: $small-view) { + width: auto; + + &:first-child { + flex-grow: 1; + } + } } & > div { diff --git a/client/src/app/+my-account/shared/actor-avatar-info.component.scss b/client/src/app/+my-account/shared/actor-avatar-info.component.scss index 0b0c83de5..86f8108b9 100644 --- a/client/src/app/+my-account/shared/actor-avatar-info.component.scss +++ b/client/src/app/+my-account/shared/actor-avatar-info.component.scss @@ -18,6 +18,10 @@ .actor-info-display-name { font-size: 20px; font-weight: $font-bold; + + @media screen and (max-width: $small-view) { + font-size: 16px; + } } .actor-info-username { @@ -48,4 +52,4 @@ position: relative; top: -10px; -} \ No newline at end of file +} diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 28b466c01..d84766240 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -147,7 +147,7 @@ label { } @media screen and (max-width: 500px) { - margin-right: 20px; + margin-right: 15px; } } @@ -382,6 +382,8 @@ table { } .sub-menu { + width: 100vw; + overflow-x: auto; padding-left: 15px; padding-right: 15px; margin-bottom: 10px; diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 9c3f28b28..262a8136f 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss @@ -235,6 +235,10 @@ position: relative; font-size: 15px; + @media screen and (max-width: $width) { + width: 100%; + } + &:after { top: 50%; right: calc(0% + 15px); -- 2.25.1