Skip to content

Commit

Permalink
style: quiz button option transition
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEscaleira committed Apr 27, 2024
1 parent f75fd57 commit aad2e35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import useBreakpoint from "use-breakpoint";
import { LoginForm } from "@components/Login/LoginForm.tsx";
import { useUserStore } from "@state/userStore.ts";
import { BREAKPOINTS } from "@utils/constants.ts";
import { useCountryInformation } from "@utils/hooks/useCountryInformation.ts";
import { LOGOUT_USER } from "@utils/queries/Logout.ts";
import { QUIZ_OF_THE_DAY } from "@utils/queries/QuizOfTheDay.ts";
import { useCountryInformation } from "@utils/hooks/useCountryInformation.ts";

export function Header() {
// const { notifications, clear, markAllAsRead, markAsRead, add, update, remove, find, sort, unreadCount } =
Expand Down
2 changes: 1 addition & 1 deletion src/components/QuizAttempt/QuizAttempt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function QuizAttempt({ quiz }: QuizAttemptProps) {
fullWidth
variant={chosen ? "filled" : "outlined"}
color="blue-gray"
className="outline-none focus:ring-0"
className="outline-none transition-all active:scale-95 h-11"
onClick={() => setQuestionResponse(text)}
>
{text}
Expand Down

0 comments on commit aad2e35

Please sign in to comment.