Skip to content

Commit

Permalink
style: format code with Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in c03f3cf according to the output
from Prettier.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Nov 7, 2023
1 parent c03f3cf commit 68809e9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/make-scrollable-code-focusable.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Array.from(document.getElementsByTagName('pre')).forEach((element) => {
element.setAttribute('tabindex', '0');
Array.from(document.getElementsByTagName("pre")).forEach((element) => {
element.setAttribute("tabindex", "0");
});
14 changes: 12 additions & 2 deletions src/styles/main.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
@import "content.scss";

body {
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-family:
"Inter",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Oxygen,
Ubuntu,
Cantarell,
"Open Sans",
"Helvetica Neue",
sans-serif;
}

@tailwind base;
Expand Down

0 comments on commit 68809e9

Please sign in to comment.