diff --git a/src/app.css b/src/app.css
index 23ec274d..e70c1315 100644
--- a/src/app.css
+++ b/src/app.css
@@ -16,12 +16,18 @@ html {
.x-container {
position: relative;
- flex: 1;
padding: 10px;
overflow: hidden auto;
box-sizing: border-box;
+ background: var(--background);
+ height: calc(100vh - 20px);
+ margin: 10px 10px 10px 0;
+ border-radius: var(--radius);
+ border: 1px solid var(--border);
+}
+
+html.dark .x-container {
background: var(--sidebar);
- height: 100%;
}
diff --git a/src/components/Location.vue b/src/components/Location.vue
index 94e23536..259e2218 100644
--- a/src/components/Location.vue
+++ b/src/components/Location.vue
@@ -8,7 +8,7 @@
:class="['x-location', { 'x-link': link && location !== 'private' && location !== 'offline' }]"
class="inline-flex min-w-0 flex-nowrap items-center overflow-hidden"
@click="handleShowWorldDialog">
-
+
{{ text }}
{{
` · #${instanceName}`
@@ -31,7 +31,7 @@
:class="['x-location', { 'x-link': link && location !== 'private' && location !== 'offline' }]"
class="inline-flex min-w-0 flex-nowrap items-center overflow-hidden"
@click="handleShowWorldDialog">
-
+
{{ text }}
{{
` · #${instanceName}`
@@ -54,8 +54,8 @@