Skip to content

Commit

Permalink
search button background & border colors
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonWingerAir committed Jan 20, 2024
1 parent 37d57c0 commit 96f1f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</div>
<button
@click="!showResults ? showResults = !showResults : showResults = showResults; hideSuggestions = true"
class="h-9 px-3 bg-neutral-500 hover:bg-neutral-400 active:bg-neutral-500 text-white border border-neutral-700 active:border-neutral-500 font-semibold rounded-lg"
class="h-9 px-3 bg-neutral-400 active:bg-neutral-500 text-white border border-neutral-700 hover:border-black active:border-black font-semibold rounded-lg"
>
Search <span class="text-sm">🔎</span>
</button>
Expand Down Expand Up @@ -76,7 +76,7 @@ const hideSuggestions = ref(true);

<style>
.background-img {
background: linear-gradient(rgba(65, 65, 65, 0.35),rgba(125, 125, 125, 0.35)), url('/video-game-system.jpg');
background: linear-gradient(rgba(125, 125, 125, 0.35),rgba(125, 125, 125, 0.35)), url('/video-game-system.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: 100% 50%;
Expand Down

0 comments on commit 96f1f11

Please sign in to comment.