Skip to content

Commit e791cc6

Browse files
authored
fix: header padding regression (#1477)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Improved spacing in the header and user profile components by adding top and right margins for a cleaner layout. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 5ce5d19 commit e791cc6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/components/HeaderOsVersion.ce.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const updateOsStatus = computed(() => {
7878
</script>
7979

8080
<template>
81-
<div class="flex flex-col gap-y-2">
81+
<div class="flex flex-col gap-y-2 mt-2">
8282
<a
8383
:href="unraidLogoHeaderLink.href"
8484
:title="unraidLogoHeaderLink.title"

web/components/UserProfile.ce.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ onMounted(() => {
100100
<template>
101101
<div
102102
id="UserProfile"
103-
class="text-foreground relative z-20 flex flex-col h-full gap-y-1"
103+
class="text-foreground relative z-20 flex flex-col h-full gap-y-1 mt-2 mr-2"
104104
>
105105
<div
106106
v-if="bannerGradient"

0 commit comments

Comments
 (0)