From e690677641f08da11d88340e4c6d7c49c11f07c7 Mon Sep 17 00:00:00 2001 From: Eduard Nerkararian Date: Thu, 12 Dec 2024 11:34:01 +0000 Subject: [PATCH] fix: add pointer cursor and open links in new tab --- src/index.html | 14 +++++++++++--- src/styles/components/footer.scss | 7 ++++++- src/styles/components/testimonials.scss | 1 + 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/index.html b/src/index.html index bec5d326a..1a46123e5 100644 --- a/src/index.html +++ b/src/index.html @@ -653,6 +653,8 @@ 2905 West Drive, Buffalo Grove @@ -663,19 +665,25 @@ diff --git a/src/styles/components/footer.scss b/src/styles/components/footer.scss index 81384e53a..8314d4568 100644 --- a/src/styles/components/footer.scss +++ b/src/styles/components/footer.scss @@ -50,8 +50,9 @@ padding-bottom: 18px; border: none; border-bottom: 2px solid $white; - overflow: hidden; + overflow: auto; transition: all 0.4s; + scrollbar-width: none; &:active, &:focus { @@ -59,6 +60,10 @@ } } + textarea::-webkit-scrollbar { + display: none; + } + @include on-tablet { max-width: 65%; } diff --git a/src/styles/components/testimonials.scss b/src/styles/components/testimonials.scss index d586b5578..44169afcb 100644 --- a/src/styles/components/testimonials.scss +++ b/src/styles/components/testimonials.scss @@ -45,6 +45,7 @@ border-radius: 16px; text-align: center; padding: 32px 37px; + cursor: pointer; @include card-hover-effect;