Browse Source

Fix: better font display when editing a block.

sly 5 years ago
parent
commit
bd08afe7a6
1 changed files with 6 additions and 1 deletions
  1. 6 1
      resources/css/common.css

+ 6 - 1
resources/css/common.css

@@ -10,6 +10,8 @@
     --ls-primary-background-color: #002b36;
     --ls-secondary-background-color: #073642;
     --ls-tertiary-background-color: #0f4552;
+    --ls-alternative-background-color: #01313d;
+
     --ls-block-properties-background-color: #02222a;
     --ls-search-background-color: var(--ls-primary-background-color);
     --ls-border-color: #0e5263;
@@ -51,6 +53,9 @@
     --ls-primary-background-color: white;
     --ls-secondary-background-color: #D8E1E8;
     --ls-tertiary-background-color: #f0f8ff;
+    --ls-alternative-background-color: #ced9e0;
+
+
     --ls-block-properties-background-color: var(--ls-tertiary-background-color);
     --ls-search-background-color: var(--ls-primary-background-color);
     --ls-border-color: #ccc;
@@ -134,7 +139,7 @@ textarea {
     padding: 8px;
     border: 1px solid rgba(39,41,43,.15);
     border-radius: 4px;
-    font-size: 1rem;
+    font-size: 1em;
     line-height: 1.5;
     width: 100%;
     resize: none;