Skip to content

Commit

Permalink
Merge branches 'sense-spacing' and 'sense-spacing' of github.com:livi…
Browse files Browse the repository at this point in the history
…ngtongues/living-dictionaries into sense-spacing
  • Loading branch information
jacob-8 committed Nov 3, 2023
2 parents 36a855b + 835a6d3 commit 2a8de57
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
deleteImage: { entryId: string };
valueupdate: { field: string; newValue: string | string[]; entryId: string };
}>();
const isFirefox = /Firefox/i.test(navigator.userAgent);
</script>

<div
Expand Down Expand Up @@ -49,7 +51,7 @@
{#each columns as column, i}
<td
class:bg-green-100={canEdit && entry.ua?.toMillis?.() > minutesAgo(5)}
class="{column.sticky ? 'sticky bg-white z-1' : ''} h-0"
class="{column.sticky ? 'sticky bg-white z-1' : ''} {isFirefox ? '' : 'h-0'}"
style="{column.sticky
? 'left:' + getLeftValue(i) + 'px; --border-right-width: 3px;'
: ''} --col-width: {entry.sources ? 'auto' : `${column.width}px`};">
Expand Down

0 comments on commit 2a8de57

Please sign in to comment.