fix: increase bottom spacing for installation guide blocks

This commit is contained in:
c0mrade
2026-02-05 21:48:53 +03:00
parent 5a69496dde
commit c669d2e9b5
2 changed files with 2 additions and 2 deletions

View File

@@ -310,7 +310,7 @@ export default function InstallationGuide({
const Renderer = RENDERERS[blockType] || CardsBlock; const Renderer = RENDERERS[blockType] || CardsBlock;
return ( return (
<div className="space-y-6"> <div className="space-y-6 pb-6">
{/* Header + platform dropdown */} {/* Header + platform dropdown */}
<div className="flex items-center gap-3"> <div className="flex items-center gap-3">
{!isTelegramWebApp && ( {!isTelegramWebApp && (

View File

@@ -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 ? 'pb-2' : 'mb-4 border-b border-dark-700/50 pb-4'}> <div key={index} className={isLast ? 'pb-4' : '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}