X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Finclude%2F_mixins.scss;h=10ab44f57a402d8d2c95c17ab4ee662572b7903e;hb=48586fe070c2a59e9febb62a7f41ebb384e1d20e;hp=4d70110fef8e63d1d03c8197823055c2db73fa3b;hpb=afff310e50f2fa8419bb4242470cbde46ab54463;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 4d70110fe..10ab44f57 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss @@ -121,6 +121,7 @@ min-height: $button-height; padding-top: 0; padding-bottom: 0; + flex-wrap: nowrap; .input-group-text{ font-size: 14px; @@ -225,7 +226,7 @@ line-height: $button-height; border-radius: 3px; text-align: center; - padding: 0 13px 0 13px; + padding: 0 17px 0 13px; cursor: pointer; } @@ -304,14 +305,11 @@ z-index: 100; } +@mixin responsive-width ($width) { + width: $width; -@mixin ng-select ($width) { - ::ng-deep ng-select { - width: $width; - - @media screen and (max-width: $width) { - width: 100%; - } + @media screen and (max-width: $width) { + width: 100%; } } @@ -731,6 +729,10 @@ &.secondary { background-color: pvar(--secondaryColor); } + + &.red { + background-color: lighten($color: #c54130, $amount: 10); + } } }