Make the 'About' button on the landing page more visually consistent
Update the "About" button's CSS class from `rounded-md` to `rounded-full` in `client/src/components/about/about-section.tsx`. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 88cd88e4-2dbe-4df6-8c8a-7e38f13ef1ec Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/402c1e93-5369-4162-880e-69f854a55e4b.jpg
This commit is contained in:
parent
f84e26b18c
commit
a6b484272d
|
|
@ -27,7 +27,7 @@ export function AboutSection() {
|
|||
<div className="mt-8">
|
||||
<Link href="/about">
|
||||
<span
|
||||
className="inline-block bg-purple text-white font-medium py-2 px-6 hover:bg-opacity-90 transition duration-300 rounded-md"
|
||||
className="inline-block bg-purple text-white font-medium py-2 px-6 hover:bg-opacity-90 transition duration-300 rounded-full"
|
||||
style={{
|
||||
boxShadow: "0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08)",
|
||||
textShadow: "0 1px 2px rgba(0, 0, 0, 0.1)",
|
||||
|
|
|
|||
Loading…
Reference in New Issue