fix: remove useless scroll bar (#1035)
* fix: remove useless scroll bar * update
This commit is contained in:
parent
9b94332b22
commit
bd71551631
|
|
@ -9,7 +9,7 @@ function RSSList({ type, list }: { type: string; list: RSSData[] }) {
|
|||
return (
|
||||
<div className="space-y-4">
|
||||
<h2 className="text-base font-bold">{chrome.i18n.getMessage(type)}</h2>
|
||||
<ul className="overflow-x-auto">
|
||||
<ul className="overflow-x-auto w-max min-w-full max-w-[700px]">
|
||||
{list.map((item) => (
|
||||
<RSSItem key={item.url + item.title} item={item} type={type} />
|
||||
))}
|
||||
|
|
|
|||
Loading…
Reference in New Issue