Skip to content

Commit

Permalink
update hover bg on cards
Browse files Browse the repository at this point in the history
  • Loading branch information
radumojic committed Jul 29, 2024
1 parent d0a6e86 commit 5e07ef1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: deploy-staging

on:
push:
branches: [development]
branches: [rm/template-exploration]
repository_dispatch:
types: deploy-staging
workflow_dispatch:
Expand All @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: development
ref: rm/template-exploration
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v1
Expand Down
4 changes: 2 additions & 2 deletions src/components/Section/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const SectionCard = ({
<Link
to={link}
className={clsx(
"section-small-card section-small-shadow w-auto h-[196px] p-10 rounded-2xl border border-solid border-white/5 backdrop-blur-[52px] justify-between items-end inline-flex hover:no-underline hover:bg-neutral-200 dark:hover:bg-neutral-900/80",
"section-small-card section-small-shadow w-auto h-[196px] p-10 rounded-2xl border border-solid border-white/5 backdrop-blur-[52px] justify-between items-end inline-flex hover:no-underline bg-white hover:bg-teal-50 dark:bg-transparent dark:hover:bg-neutral-900/80",
className
)}
>
Expand Down Expand Up @@ -49,7 +49,7 @@ const SectionCard = ({
<Link
to={link}
className={clsx(
"section-card section-shadow grow shrink basis-0 h-[236px] p-10 rounded-3xl backdrop-blur-[50px] justify-between items-end flex hover:no-underline bg-white hover:bg-neutral-200 dark:bg-neutral-900/80 dark:hover:bg-neutral-800/80",
"section-card section-shadow grow shrink basis-0 h-[236px] p-10 rounded-3xl backdrop-blur-[50px] justify-between items-end flex hover:no-underline bg-white hover:bg-teal-50 dark:bg-neutral-900/80 dark:hover:bg-neutral-800/80",
className
)}
>
Expand Down

0 comments on commit 5e07ef1

Please sign in to comment.