Commit e8d1c26

HPCesia <me@hpcesia.com>
2025-02-10 05:00:24
fix: search input width
1 parent bf09329
Changed files (1)
src
components
src/components/search/SearchBaseUI.astro
@@ -10,7 +10,7 @@ const { class: className, ...rest } = Astro.props;
 ---
 
 <div class:list={['w-full', className]} {...rest}>
-  <label class="input input-bordered flex items-center gap-2">
+  <label class="input input-bordered flex w-full items-center gap-2">
     <input type="text" class="grow" placeholder={i18n(I18nKey.search)} />
     <Icon name="material-symbols:search-rounded" class="text-3xl" />
   </label>