]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/sass/include/_mixins.scss
Fix ng-select width
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _mixins.scss
index fecae9fbca55fdec6a06c0a2abf1adcedb71f882..10ab44f57a402d8d2c95c17ab4ee662572b7903e 100644 (file)
   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%;
   }
 }