Skip to content
Open
Show file tree
Hide file tree
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 components/Headlines.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const Headline1Tag = ({ children, attributes }: TagProps) => (
<h1
{...attributes}
className={cn(
'text-h1mobile md:text-h1 dark:text-slate-200 font-bold pt-10 mb-6',
'text-[30px] md:text-h1 dark:text-slate-200 font-bold pt-10 mb-6',
attributes?.className,
)}
>
Expand Down
3 changes: 1 addition & 2 deletions pages/tools/components/GroupByMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ const GroupByMenu = ({ transform, setTransform }: GroupByMenuProps) => {
};

return (
<div className='ml-2 my-8 flex items-center space-x-2 max-w-screen overflow-x-auto'>
<span className='text-slate-600 dark:text-slate-300'>GROUP BY:</span>
Copy link
Member

Choose a reason for hiding this comment

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

We need the text GROUP BY.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I proposed something else in the issue , #1989 kindly review and tell what changes you want.

Copy link
Member

Choose a reason for hiding this comment

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

I checked and I know what you're trying to say, but we cannot get rid of "GROUP BY" word because it indicates the functionality. So, if there's a way that we can keep that intact then it would be great.

Choose a reason for hiding this comment

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

Hi, I have understood the issue and has drafted a pr which preserves "GROUP BY" word while at the same time making its UI cleaner for smaller screens. Would love to contribute so please assign me on this pr.

<div className='ml-2 my-8 flex justify-center items-center space-x-2 max-w-screen overflow-x-auto'>
{groupBy.map((group) => {
return (
<Button
Expand Down
Loading