From 209711cc9f2f4e287c260a6dfffa6c0269b21798 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 30 May 2024 13:09:28 +0200 Subject: [PATCH] button style like shop --- src/App.css | 17 +++++++++++++++++ src/App.js | 14 +------------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/src/App.css b/src/App.css index 01ed8ef..7b4ff5d 100644 --- a/src/App.css +++ b/src/App.css @@ -47,3 +47,20 @@ .card span { font-size: 18px; } + +.show-more-button { + background-color: #af9363; + color: #fff; + border-radius: 40px; + padding: 14px 24.5px; + border: none; + cursor: pointer; + font-size: 15px; + letter-spacing: 1.2px; + font-family: "Assistant", sans-serif; + border: 1px solid #fff; +} + +.show-more-button:hover { + border: 1px solid #af9363; +} diff --git a/src/App.js b/src/App.js index c54fa13..dfc77a9 100644 --- a/src/App.js +++ b/src/App.js @@ -25,19 +25,7 @@ function SkeletonPlaceholder() { function ShowMoreButton({ onClick }) { return ( -