Skip to content

Commit

Permalink
fix: remove useless scroll bar (#1035)
Browse files Browse the repository at this point in the history
* fix: remove useless scroll bar

* update
  • Loading branch information
hyoban authored Jun 13, 2024
1 parent 9b94332 commit bd71551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/popup/RSSList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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} />
))}
Expand Down

0 comments on commit bd71551

Please sign in to comment.