fix: adjust header styles to fix flashing and width issues - thanks ZarZ

This commit is contained in:
Eli Bosley
2025-09-09 08:17:23 -04:00
parent daeeba8c1f
commit 4759b3d0b3
2 changed files with 3 additions and 3 deletions

View File

@@ -158,7 +158,7 @@ const updateOsStatus = computed(() => {
</script>
<template>
<div class="mt-4 ml-4 flex flex-col gap-y-2">
<div class="mt-4 ml-4 flex max-w-fit flex-col gap-y-2">
<a
:href="unraidLogoHeaderLink.href"
:title="unraidLogoHeaderLink.title"

View File

@@ -110,10 +110,10 @@ onMounted(() => {
>
<template v-if="description && theme?.descriptionShow">
<span
class="hidden text-center text-base md:inline-flex md:items-center md:text-right"
class="hidden text-center text-base md:!inline-flex md:items-center md:text-right"
v-html="description"
/>
<span class="text-header-text-secondary hidden px-2 md:inline-flex md:items-center"
<span class="text-header-text-secondary hidden px-2 md:!inline-flex md:items-center"
>&bull;</span
>
</template>