Skip to content

Commit

Permalink
Merge pull request #4865 from FlowFuse/4850-fix-dg-settings-padding
Browse files Browse the repository at this point in the history
Fix padding on Device Group Settings view
  • Loading branch information
cstns authored Dec 6, 2024
2 parents 539e243 + bfe85a5 commit 6f5148b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/SectionSideMenu.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<ul class="mb-6 sm:mb-0 sm:-ml-6 w-full pb-4 sm:pb-0 sm:w-32 border-b sm:border-b-0 sm:border-r overflow-hidden border-gray-400 mr-6 text-gray-500 space-y-2" data-el="section-side-menu">
<ul class="mb-6 sm:mb-0 w-full pb-4 sm:pb-0 sm:w-32 border-b sm:border-b-0 sm:border-r overflow-hidden border-gray-400 mr-6 text-gray-500 space-y-2" data-el="section-side-menu">
<template v-for="item in options" :key="item.name">
<li class="block">
<router-link :to="item.path" class="block text-sm px-3 py-1 sm:py-2 pl-3 ml-1" exact-active-class="text-blue-700 ml-0 border-l-4 border-blue-700" :data-nav="item.name.toLowerCase()">{{ item.name }}</router-link>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/account/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="text-l text-gray-400">{{ user.username }}</div>
</div>
</div>
<div class="text-sm sm:px-6 mt-4 sm:mt-8">
<div class="text-sm mt-4 sm:mt-8">
<router-view />
</div>
</ff-page>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/device/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</template>
</SectionNavigationHeader>
</div>
<div class="sm:px-6 mt-4 sm:mt-8">
<div class="mt-4 sm:mt-8">
<Teleport v-if="mounted && isVisitingAdmin" to="#platform-banner">
<div class="ff-banner" data-el="banner-device-as-admin">You are viewing this device as an Administrator</div>
</Teleport>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/instance/Settings/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="mb-3">
<SectionTopMenu hero="Settings" info="" />
</div>
<div class="flex flex-col sm:flex-row ml-6">
<div class="flex flex-col sm:flex-row">
<SectionSideMenu :options="sideNavigation" />
<div class="flex-grow">
<router-view
Expand Down

0 comments on commit 6f5148b

Please sign in to comment.