diff --git a/assets/css/fonts.scss b/assets/css/fonts.scss
index 0c714f199..ecb70d187 100644
--- a/assets/css/fonts.scss
+++ b/assets/css/fonts.scss
@@ -6,7 +6,9 @@
font-family: "Material Icons";
font-style: normal;
font-weight: 400;
- font-display: swap;
+ // Do not use font-display: swap for the icon font - it looks really bad when the page
+ // loads.
+ font-display: block;
src: url("~static/fonts/material-icons-v48.woff2") format("woff2");
}
diff --git a/assets/css/styles.scss b/assets/css/styles.scss
index ef24d4e81..1325f1a5f 100644
--- a/assets/css/styles.scss
+++ b/assets/css/styles.scss
@@ -190,6 +190,7 @@ nav.primary-nav {
color: var(--fg-light-color);
fill: var(--fg-light-color);
margin: 8px 0;
+ height: 52px;
&:hover {
color: var(--fg-color);
diff --git a/components/ace-editor.vue b/components/ace-editor.vue
index d6f14389a..be1917c08 100644
--- a/components/ace-editor.vue
+++ b/components/ace-editor.vue
@@ -1,7 +1,23 @@
-
+
+
+
diff --git a/components/graphql/queryeditor.vue b/components/graphql/queryeditor.vue
index 56fe6bc35..459b2deee 100644
--- a/components/graphql/queryeditor.vue
+++ b/components/graphql/queryeditor.vue
@@ -1,7 +1,23 @@
-
+
+
+
diff --git a/layouts/default.vue b/layouts/default.vue
index ed40616ed..2ea94e7de 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -298,8 +298,8 @@
>
offline_bolt
-
-
+
+
account_circle
- {{ fb.currentUser.displayName || "Name not found" }}
+ {{ fb.currentUser.displayName || $t("nothing_found") }}
@@ -99,7 +99,7 @@
:color="theme.color"
:name="theme.name"
class="bg"
- >
+ />
@@ -110,7 +110,7 @@