aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKimsible <1877318+kimsible@users.noreply.github.com>2020-11-24 14:54:08 +0100
committerGitHub <noreply@github.com>2020-11-24 14:54:08 +0100
commitc07fac202dba3fed69aace74157589c21d732be6 (patch)
treefec57ac443af40fe36cf1cd93fb26e3fee2f03d8
parentab0beac72fa26ec040275b668cd0dc8b3b8744f1 (diff)
downloadPeerTube-c07fac202dba3fed69aace74157589c21d732be6.tar.gz
PeerTube-c07fac202dba3fed69aace74157589c21d732be6.tar.zst
PeerTube-c07fac202dba3fed69aace74157589c21d732be6.zip
fix user preferences column width for notifications table (#3352)
Co-authored-by: kimsible <kimsible@users.noreply.github.com>
-rw-r--r--client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss10
1 files changed, 4 insertions, 6 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 75e52fa1b..b06d8b16d 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
@@ -12,16 +12,14 @@
12 12
13 & > div { 13 & > div {
14 padding: 10px; 14 padding: 10px;
15 width: 350px;
16 15
17 &:nth-child(2) { 16 &:first-child {
18 max-width: 60px !important; 17 width: 350px;
19 } 18 }
20 19
21 @media screen and (max-width: $small-view) { 20 @media screen and (max-width: #{breakpoint(sm)}) {
22 width: auto;
23
24 &:first-child { 21 &:first-child {
22 width: auto;
25 flex-grow: 1; 23 flex-grow: 1;
26 } 24 }
27 } 25 }