Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preventing url links from overflowing to the right #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 src/app/components/Context/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const Context: React.FC<ContextProps> = ({ className, selected }) => {
className={`flex flex-col space-y-4 overflow-y-scroll border-2 border-gray-500 w-full ${className}`}
>
<div className="flex flex-col items-start sticky top-0 w-full">
<div className="flex flex-col lg:flex-row w-full p-2">{buttons}</div>
<div className="flex flex-col lg:flex-row w-full lg:flex-wrap p-2">{buttons}</div>
<div className="flex-grow w-full px-4">
<Button
className="w-full my-2"
Expand Down