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

Make buttons more responsive #263

Merged
drawdb-io:main from
Oct 19, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Make buttons more responsive w/o relying on flex
  • Loading branch information
Dante Mogrim authored and Dante Mogrim committed Oct 15, 2024
commit 249d11f9e5d8c9b9b3808ad2b89364c4d44e1712
4 changes: 2 additions & 2 deletions src/pages/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ export default function LandingPage() {
</div>
</div>
</FadeIn>
<div className="flex items-start justify-start gap-4 mt-4 font-semibold md:mt-12">
<div className="mt-4 font-semibold md:mt-12">
<button
className="py-3 transition-all duration-300 bg-white border rounded-full shadow-lg px-9 border-zinc-200 hover:bg-zinc-100"
className="py-3 mb-4 xl:mb-0 mr-4 transition-all duration-300 bg-white border rounded-full shadow-lg px-9 border-zinc-200 hover:bg-zinc-100"
onClick={() =>
document
.getElementById("learn-more")
Expand Down
Loading