Skip to content

Commit

Permalink
Fix Inter Font + Media Query
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor-Ultra committed Jul 24, 2023
1 parent a8fb11d commit 1b9a1ae
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions packages/client/src/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

Expand Down Expand Up @@ -76,19 +78,6 @@ button:focus-visible {
text-align: center;
}

@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}

@keyframes rotate {
0% {
transform: rotate(0deg);
Expand Down

0 comments on commit 1b9a1ae

Please sign in to comment.