Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
Benehiko committed Sep 11, 2023
1 parent 020d378 commit 68a77d6
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 11 deletions.
15 changes: 12 additions & 3 deletions examples/nextjs-spa/src/styles/Dashboard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,15 @@
border-radius: 5px;
padding: 0.75rem;
font-size: 1.1rem;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
font-family:
Menlo,
Monaco,
Lucida Console,
Liberation Mono,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
Courier New,
monospace;
}

.grid {
Expand All @@ -130,7 +137,9 @@
text-decoration: none;
border: 1px solid #eaeaea;
border-radius: 10px;
transition: color 0.15s ease, border-color 0.15s ease;
transition:
color 0.15s ease,
border-color 0.15s ease;
max-width: 300px;
}

Expand Down
14 changes: 12 additions & 2 deletions examples/nextjs-spa/src/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
html,
body {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-family:
-apple-system,
BlinkMacSystemFont,
Segoe UI,
Roboto,
Oxygen,
Ubuntu,
Cantarell,
Fira Sans,
Droid Sans,
Helvetica Neue,
sans-serif;

display: flex;

Expand Down
2 changes: 1 addition & 1 deletion examples/preact-spa/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion examples/react-spa/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion playwright/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
9 changes: 6 additions & 3 deletions src/assets/inter-font.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("inter/Inter-Regular.woff2?v=3.19") format("woff2"),
src:
url("inter/Inter-Regular.woff2?v=3.19") format("woff2"),
url("inter/Inter-Regular.woff?v=3.19") format("woff");
}

Expand All @@ -12,7 +13,8 @@
font-style: normal;
font-weight: 700;
font-display: swap;
src: url("inter/Inter-Bold.woff2?v=3.19") format("woff2"),
src:
url("inter/Inter-Bold.woff2?v=3.19") format("woff2"),
url("inter/Inter-Bold.woff?v=3.19") format("woff");
}

Expand All @@ -21,6 +23,7 @@
font-style: normal;
font-weight: 600;
font-display: swap;
src: url("inter/Inter-SemiBold.woff2?v=3.19") format("woff2"),
src:
url("inter/Inter-SemiBold.woff2?v=3.19") format("woff2"),
url("inter/Inter-SemiBold.woff?v=3.19") format("woff");
}

0 comments on commit 68a77d6

Please sign in to comment.