Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/webview-common/src/components/tablist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Tablist = ({ activeIndex, onChange, items }: TablistProps) => {
};

return (
<div role="tablist" className="inline-flex text-gray-600 dark:text-gray-400">
<div role="tablist" className="flex flex-wrap justify-center text-gray-600 dark:text-gray-400">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: what does the tablist look like when it's wrapped?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Screen.Recording.2025-05-06.at.2.49.04.PM.mov

{items.map((item, index) => (
<button
key={item.name}
Expand Down