Skip to content

Commit

Permalink
revert font and fix state of modal
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPereira committed Dec 1, 2023
1 parent 7a67a1e commit 1a9be96
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/pages/contest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { useScaffoldEventSubscriber } from "~~/hooks/scaffold-eth";

const CurrentContest: NextPage = () => {
const [showRoundStartModal, setShowRoundStartModal] = useState(false);
const [showRoundCalculating, setShowRoundCalculating] = useState(true);
const [showRoundCalculating, setShowRoundCalculating] = useState(false);
const [isRoundEnd, setIsRoundEnd] = useState(false);
const [roundNumber, setRoundNumber] = useState(0);
const [roundResults, setRoundResults] = useState({
Expand Down
2 changes: 0 additions & 2 deletions packages/nextjs/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @import url("https://fonts.googleapis.com/css2?family=Didact+Gothic"); */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Lobster&display=swap");
@import url("https://fonts.cdnfonts.com/css/cubano");

@import "tailwindcss/base";
Expand Down
4 changes: 0 additions & 4 deletions packages/nextjs/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ module.exports = {
],
},
theme: {
fontFamily: {
sans: ["Inter", "Tahoma", "Verdana", "sans-serif"],
},
extend: {
colors: {
secondary: "#FFFFFF3D",
Expand All @@ -90,7 +87,6 @@ module.exports = {
},
fontFamily: {
cubano: ["cubano", "sans-serif"],
gothic: ["didact gothic", "sans-serif"],
},
},
},
Expand Down

0 comments on commit 1a9be96

Please sign in to comment.