style(homepage): remove fixed height constraint from guide card

- Remove `rb:h-[204px]` class from GuideCard container div
- Allow guide card to adapt height based on content
- Maintain responsive width and padding styling
- Improves layout flexibility for different screen sizes
This commit is contained in:
yujiangping
2026-01-12 17:51:45 +08:00
parent d957e27501
commit a52e61fb87

View File

@@ -59,7 +59,7 @@ const GuideCard: React.FC = () => {
return (
<>
<div className='rb:w-full rb:h-[204px] rb:p-4' style={{ backgroundImage: `url(${guideBgImg})`, backgroundSize: '100% 100%' }}>
<div className='rb:w-full rb:p-4' style={{ backgroundImage: `url(${guideBgImg})`, backgroundSize: '100% 100%' }}>
<div className='rb:flex rb:justify-start rb:text-white rb:text-base rb:font-semibold' >
{ t('index.getStarted')}
</div>