diff --git a/assets/css/styles.scss b/assets/css/styles.scss
index afb764719..ed8bd8368 100644
--- a/assets/css/styles.scss
+++ b/assets/css/styles.scss
@@ -615,6 +615,14 @@ ol li {
align-items: center;
justify-content: space-between;
flex-grow: 1;
+ flex-direction: row;
+
+ * {
+ display: inline-flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+ }
}
.show-on-small-screen {
diff --git a/components/history.vue b/components/history.vue
index b85ab6895..28f3261e7 100644
--- a/components/history.vue
+++ b/components/history.vue
@@ -24,8 +24,9 @@
@click="toggleStar(index)"
v-tooltip="{ content: !entry.star ? 'Add star' : 'Remove star' }"
>
- star
- star_border
+
+ {{ entry.star ? "star" : "star_border" }}
+
-
+ -->
- visibility
- visibility_off
+
+ {{ !previewEnabled ? "visibility" : "visibility_off" }}
+
{{
previewEnabled ? $t("hide_preview") : $t("preview_html")
}}
diff --git a/pages/realtime.vue b/pages/realtime.vue
index 0abff8cd8..95d471bdf 100644
--- a/pages/realtime.vue
+++ b/pages/realtime.vue
@@ -27,10 +27,9 @@
>
{{ toggleConnectionVerb }}
- sync
- sync_disabled
+
+ {{ connectionState ? "sync" : "sync_disabled" }}
+
@@ -117,12 +116,9 @@
>
{{ toggleSSEConnectionVerb }}
- sync
- sync_disabled
+
+ {{ !connectionSSEState ? "sync" : "sync_disabled" }}
+