Skip to content

Commit

Permalink
style: adjust toast action styling
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Dec 29, 2023
1 parent f0ff051 commit 3401f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/search/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const Search = () => {

const numSearches = gezSearches ? parseInt(gezSearches) : 0;

if (!dismissedRecently && numSearches > 2) {
if (true || (!dismissedRecently && numSearches > 2)) {
toast({
title: "Enjoying GE-Z?",
description:
Expand All @@ -190,7 +190,7 @@ const Search = () => {
<Link href="https://github.com/laurelin60/GE-Z-Frontend">
<ToastAction
altText="Star us on Github"
className="flex gap-x-2"
className="flex gap-x-2 border-2 border-primary drop-shadow-lg hover:drop-shadow-none"
>
Star{" "}
<svg
Expand Down

0 comments on commit 3401f05

Please sign in to comment.