Skip to content

Commit

Permalink
fix(ui): border alignment in full width view
Browse files Browse the repository at this point in the history
  • Loading branch information
18alantom committed Sep 4, 2023
1 parent a24d605 commit 9558350
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/pages/CommonForm/LinkedEntries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
h-row-largest
sticky
top-0
border-b
bg-white
"
style="z-index: 1"
Expand All @@ -28,7 +27,7 @@
<!-- Linked Entry List -->
<div
v-if="sequence.length"
class="w-full overflow-y-auto custom-scroll"
class="w-full overflow-y-auto custom-scroll border-t"
style="height: calc(100vh - var(--h-row-largest) - 1px)"
>
<div v-for="sn of sequence" :key="sn" class="border-b p-4">
Expand Down
3 changes: 1 addition & 2 deletions src/pages/QuickEditForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
h-row-largest
sticky
top-0
border-b
bg-white
"
style="z-index: 1"
Expand Down Expand Up @@ -44,7 +43,7 @@
<!-- Name and image -->
<div
v-if="doc && (titleField || imageField)"
class="items-center border-b"
class="items-center border-b border-t"
:class="imageField ? 'grid' : 'flex justify-center'"
:style="{
height: `calc(var(--h-row-mid) * ${!!imageField ? '2 + 1px' : '1'})`,
Expand Down

0 comments on commit 9558350

Please sign in to comment.