mirror of
https://github.com/gabehf/Koito.git
synced 2026-04-22 12:01:52 -07:00
style: adjust top item list min size to 200px
This commit is contained in:
parent
37a3bcd72f
commit
5ef2f07282
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ interface Props<T extends Item> {
|
||||||
export default function TopItemList<T extends Item>({ data, separators, type, className }: Props<T>) {
|
export default function TopItemList<T extends Item>({ data, separators, type, className }: Props<T>) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`flex flex-col gap-1 ${className} min-w-[300px]`}>
|
<div className={`flex flex-col gap-1 ${className} min-w-[200px]`}>
|
||||||
{data.items.map((item, index) => {
|
{data.items.map((item, index) => {
|
||||||
const key = `${type}-${item.id}`;
|
const key = `${type}-${item.id}`;
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue