mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
fix: Chip icon is too big on mobile
This commit is contained in:
parent
b6878a0386
commit
c1204473ec
1 changed files with 7 additions and 3 deletions
|
@ -14,9 +14,13 @@ export const Chip = (props: {
|
|||
>
|
||||
{props.icon_name && (
|
||||
<span
|
||||
className={`iconify w-6 h-6 ${props.icon_name} fill-${
|
||||
props.icon_color || "white"
|
||||
}`}
|
||||
className={`iconify w-4 h-4 sm:w-6 sm:h-6 ${props.icon_name}`}
|
||||
style={
|
||||
{
|
||||
"color": "var(--icon-color)",
|
||||
"--icon-color": props.icon_color || "#fff",
|
||||
} as React.CSSProperties
|
||||
}
|
||||
></span>
|
||||
)}
|
||||
<p className="text-xs text-white xl:text-base">
|
||||
|
|
Loading…
Add table
Reference in a new issue