소스 검색

feat: hide the UI elements when printing the page (#1680)

Youness Fkhach 5 년 전
부모
커밋
9151da772c
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      src/css/styles.scss

+ 8 - 0
src/css/styles.scss

@@ -484,3 +484,11 @@ button,
 .disable-pointerEvents {
   pointer-events: none !important;
 }
+
+@media print {
+  .App-bottom-bar,
+  .FixedSideContainer,
+  .layer-ui__wrapper {
+    display: none;
+  }
+}