]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+admin/system/logs/logs.component.scss
Move to stylelint
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / system / logs / logs.component.scss
index 7ad2e853cfe618435c3747f5c9342d41ca7c9b06..1a7c3be752e2c60da3bd027cc81ea6b4263acc31 100644 (file)
     margin-right: 5px;
   }
 
+  .log-by {
+    margin: 0 5px;
+  }
+
   .warn {
-    color: $orange-color;
+    color: pvar(--mainColor);
   }
 
   .error {
     color: $red;
   }
+
+  pre {
+    margin-bottom: 5px;
+    white-space: pre-wrap;
+    word-wrap: break-word;
+  }
 }
 
 .header {
   }
 
   my-button,
-  .peertube-select-container {
+  .peertube-select-container,
+  ng-select {
     margin-left: 10px;
   }
 }
 
+@media screen and (max-width: $small-view) {
+  .header {
+    flex-direction: column;
+
+    .peertube-select-container,
+    ng-select,
+    my-button {
+      width: 100% !important;
+      margin-left: 0 !important;
+      margin-bottom: 10px !important;
+    }
+
+    my-button {
+      text-align: center;
+    }
+  }
+}
+
+@media screen and (max-width: #{$small-view + $menu-width}) {
+  :host-context(.main-col:not(.expanded)) {
+    .header {
+      flex-direction: column;
+
+      .peertube-select-container,
+      ng-select,
+      my-button {
+        width: 100% !important;
+        margin-left: 0 !important;
+        margin-bottom: 10px !important;
+      }
+
+      my-button {
+        text-align: center;
+      }
+    }
+  }
+}