ryuichi-e 5 лет назад
Родитель
Сommit
2357c41596
1 измененных файлов с 30 добавлено и 5 удалено
  1. 30 5
      src/client/styles/scss/_on-edit.scss

+ 30 - 5
src/client/styles/scss/_on-edit.scss

@@ -187,7 +187,8 @@ body.on-edit {
       }
       }
 
 
       // add icon on cursor
       // add icon on cursor
-      .markdown-table-activated, .markdown-link-activated {
+      .markdown-table-activated,
+      .markdown-link-activated {
         .CodeMirror-cursor {
         .CodeMirror-cursor {
           &:after {
           &:after {
             position: relative;
             position: relative;
@@ -197,7 +198,7 @@ body.on-edit {
             width: 1em;
             width: 1em;
             height: 1em;
             height: 1em;
             content: ' ';
             content: ' ';
-  
+
             background-repeat: no-repeat;
             background-repeat: no-repeat;
             background-size: 1em;
             background-size: 1em;
           }
           }
@@ -325,16 +326,40 @@ body.on-edit {
 */
 */
 
 
 .grw-grid-edit-modal {
 .grw-grid-edit-modal {
+  .desktop-preview,
+  .tablet-preview,
+  .mobile-preview {
+    .row {
+      height: 100%;
+      padding: 5px;
+    }
+  }
   .desktop-preview {
   .desktop-preview {
-    height: 200px;
+    height: 400px;
+    .row {
+      div {
+        background-color: $info;
+      }
+    }
   }
   }
 
 
   .tablet-preview {
   .tablet-preview {
-    height: 200px;
+    height: 380px;
+    .row {
+      div {
+        background-color: $purple;
+      }
+    }
   }
   }
 
 
   .mobile-preview {
   .mobile-preview {
-    height: 200px;
+    width: 75%;
+    height: 280px;
+    .row {
+      div {
+        background-color: $pink;
+      }
+    }
   }
   }
 
 
   .grid-division-menu {
   .grid-division-menu {