mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
fix: add bottom padding to last block in minimal layout
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user