fix: add bottom padding to last block in minimal layout

This commit is contained in:
c0mrade
2026-02-05 21:34:35 +03:00
parent a142e23241
commit 5a69496dde

View File

@@ -16,7 +16,7 @@ export function MinimalBlock({
const isLast = index === blocks.length - 1;
return (
<div key={index} className={isLast ? '' : 'mb-4 border-b border-dark-700/50 pb-4'}>
<div key={index} className={isLast ? 'pb-2' : 'mb-4 border-b border-dark-700/50 pb-4'}>
<div className="mb-2 flex items-center gap-3">
<ThemeIcon
getSvgHtml={getSvgHtml}