Procházet zdrojové kódy

fix: add flex-wrap to categories container (#944)

tags/0.3.15
Matri před 2 roky
rodič
revize
e8039a7da8
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      web/app/components/explore/category.tsx

+ 1
- 1
web/app/components/explore/category.tsx Zobrazit soubor

@@ -25,7 +25,7 @@ const Category: FC<ICategoryProps> = ({
const itemClassName = (isSelected: boolean) => cn(isSelected ? 'bg-white text-primary-600 border-gray-200 font-semibold' : 'border-transparent font-medium', 'flex items-center h-7 px-3 border cursor-pointer rounded-lg')
const itemStyle = (isSelected: boolean) => isSelected ? { boxShadow: '0px 1px 2px rgba(16, 24, 40, 0.05)' } : {}
return (
<div className={cn(className, 'flex space-x-1 text-[13px]')}>
<div className={cn(className, 'flex space-x-1 text-[13px] flex-wrap')}>
<div
className={itemClassName(value === '')}
style={itemStyle(value === '')}

Načítá se…
Zrušit
Uložit