Skip to content

Commit 770d069

Browse files
committed
Format files
1 parent 8adf67c commit 770d069

5 files changed

Lines changed: 224 additions & 184 deletions

File tree

.agents/skills/create-example-app-with-integration/example/public/style.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ body {
2020
background: var(--background);
2121
color: var(--foreground);
2222
font-size: 16px;
23-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
24-
Oxygen, Ubuntu, Cantarell, sans-serif;
23+
font-family:
24+
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
25+
Cantarell, sans-serif;
2526
}
2627

2728
a {

.agents/skills/create-example-app-with-integration/example/public/theme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use strict";
2-
var mq = window.matchMedia("(prefers-color-scheme: dark)");
2+
const mq = globalThis.window.matchMedia("(prefers-color-scheme: dark)");
33
document.body.classList.add(mq.matches ? "dark" : "light");
44
mq.addEventListener("change", function (e) {
55
document.body.classList.remove("light", "dark");

0 commit comments

Comments
 (0)