Skip to content

Commit

Permalink
fix(ui-digest): make bottom scroll always visible
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia committed Dec 3, 2024
1 parent 129eb86 commit f88d18b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function DigestMatrix({ matrix }: DigestMatrixProps) {

return (
<Box sx={{ p: 2 }}>
<Box sx={{ width: 1, height: 800 }}>
<Box sx={{ width: 1, height: "calc(100vh - 350px)" }}>
{!matrix.data[0]?.length ? (
<EmptyView title={t("matrix.message.matrixEmpty")} icon={GridOff} />
) : (
Expand Down

0 comments on commit f88d18b

Please sign in to comment.