Skip to content

Commit 9c7bbd9

Browse files
authored
chore: Merge branch dev to main (#293)
2 parents 6397ea1 + d3cc36f commit 9c7bbd9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2870
-575
lines changed

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@tanstack/query-sync-storage-persister": "^4.36.1",
4747
"@tanstack/svelte-query": "^4.36.1",
4848
"datetrigger": "^1.1.1",
49+
"moment": "^2.30.1",
4950
"svelte-material-icons": "^3.0.5"
5051
}
5152
}

pnpm-lock.yaml

Lines changed: 41 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app.html

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta
7+
name="robots"
8+
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"
9+
/>
10+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1" />
312

4-
<head>
5-
<meta charset="utf-8" />
6-
<link rel="icon" href="/favicon.ico" />
7-
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
8-
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
9-
<meta name="viewport" content="width=device-width, initial-scale=1" />
13+
<!-- OpenGraph -->
14+
<meta property="og:type" content="website" />
15+
<meta property="og:image" content="/logo.png" />
1016

11-
<!-- OpenGraph -->
12-
<meta property="og:type" content="website" />
13-
<meta property="og:image" content="/logo.png" />
17+
<!-- Twitter -->
18+
<meta name="twitter:image" itemprop="image" content="/logo.png" />
19+
<meta name="twitter:card" content="summary" />
1420

15-
<!-- Twitter -->
16-
<meta name="twitter:image" itemprop="image" content="/logo.png" />
17-
<meta name="twitter:card" content="summary" />
21+
%sveltekit.head%
22+
</head>
1823

19-
%sveltekit.head%
20-
</head>
21-
22-
<body>
23-
<div>%sveltekit.body%</div>
24-
</body>
25-
26-
</html>
24+
<body>
25+
%sveltekit.body%
26+
</body>
27+
</html>

src/app.scss

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ body {
7474

7575
--red-one: hsl(333, 84%, 62%);
7676
--red-two: hsl(357, 74%, 60%);
77+
--red-three: hsl(2, 68%, 83%);
7778

7879
--yellow-one: hsl(59, 100%, 72%);
7980

@@ -86,6 +87,10 @@ body {
8687
background-color: var(--tertiary);
8788
}
8889

90+
mark {
91+
background-color: var(--secondary);
92+
}
93+
8994
/*-----headings-----*/
9095

9196
h1 {
@@ -173,14 +178,21 @@ hr {
173178
border-top: 1px solid var(--border);
174179
}
175180

176-
input {
181+
textarea {
182+
resize: vertical;
183+
field-sizing: content;
184+
}
185+
186+
input,
187+
textarea {
177188
padding: 1rem;
178189
border-radius: 12px;
179190
border: 1px solid var(--border);
180191
background-color: transparent;
181192
color: var(--secondary);
182193
}
183194

184-
input:focus {
195+
input:focus,
196+
textarea:focus {
185197
outline: 1px solid var(--primary);
186198
}

0 commit comments

Comments
 (0)