mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 10:27:49 +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;
|
const isLast = index === blocks.length - 1;
|
||||||
|
|
||||||
return (
|
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">
|
<div className="mb-2 flex items-center gap-3">
|
||||||
<ThemeIcon
|
<ThemeIcon
|
||||||
getSvgHtml={getSvgHtml}
|
getSvgHtml={getSvgHtml}
|
||||||
|
|||||||
Reference in New Issue
Block a user