diff options
author | Chocobozzz <me@florianbigard.com> | 2020-12-15 09:32:55 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-12-15 10:54:53 +0100 |
commit | d89fcd1e5efe1f91652a7c9da02a9323dc035f2b (patch) | |
tree | 6eab00f1674c006400dbf11c681c05608b9bf732 /client/src/sass/include | |
parent | c9bc850e93295661e743255b8623ac8e2a95c391 (diff) | |
download | PeerTube-d89fcd1e5efe1f91652a7c9da02a9323dc035f2b.tar.gz PeerTube-d89fcd1e5efe1f91652a7c9da02a9323dc035f2b.tar.zst PeerTube-d89fcd1e5efe1f91652a7c9da02a9323dc035f2b.zip |
Fix password input in edit user
Diffstat (limited to 'client/src/sass/include')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 19b4e204f..1231d2c44 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -305,6 +305,13 @@ | |||
305 | z-index: 100; | 305 | z-index: 100; |
306 | } | 306 | } |
307 | 307 | ||
308 | @mixin responsive-width ($width) { | ||
309 | width: $width; | ||
310 | |||
311 | @media screen and (max-width: $width) { | ||
312 | width: 100%; | ||
313 | } | ||
314 | } | ||
308 | 315 | ||
309 | @mixin ng-select ($width) { | 316 | @mixin ng-select ($width) { |
310 | ::ng-deep &.ng-select, | 317 | ::ng-deep &.ng-select, |