Skip to content

Commit

Permalink
Fix kanji references table overflow problem on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
StarScape committed Nov 23, 2024
1 parent 5433064 commit ca702c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/popup/KanjiReferencesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function KanjiReferencesTable({ entry, kanjiReferences }: Props) {
return (
<div
class={classes(
'tp-grid tp-grid-cols-[repeat(2,minmax(200px,1fr))] tp-gap-x-2',
'tp-grid tp-grid-cols-[repeat(2,minmax(min-content,1fr))] tp-gap-x-2',
'max-[450px]:tp-grid-cols-none',
'[--bg-overhang:8px]',
'-tp-mx-[--bg-overhang] tp-w-[calc(100%+2*var(--bg-overhang))]'
Expand Down

0 comments on commit ca702c6

Please sign in to comment.