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

chore: Prevent Text Selection #1881

Merged
merged 2 commits into from
Jul 29, 2023
Merged
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 app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import images from "../DB/homepage-image.json";
export default function HomePage() {
return (
<section>
<div className="relative sm:pb-4">
<div className="relative sm:pb-4 select-none">
<div className="pt-16 sm:pt-24 sm:pb-40 lg:pt-40 lg:pb-48">
<div className="relative mx-auto max-w-7xl px-4 sm:static sm:px-6 lg:px-8">
<section className="sm:max-w-[19.5rem] md:max-w-[24.5rem] tab:max-w-[28rem] lg:max-w-[30rem]">
Expand Down
2 changes: 1 addition & 1 deletion components/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const features = [

export default function Banner() {
return (
<div className="bg-inherit py-24 sm:py-32">
<div className="bg-inherit py-24 sm:py-32 select-none">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto max-w-2xl lg:text-center">
<h2 className="text-base font-semibold leading-7 text-primary">
Expand Down