We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ccc645 commit dcebeecCopy full SHA for dcebeec
src/lib/client/SuperDebug.svelte
@@ -441,8 +441,8 @@
441
padding: 1em;
442
padding-bottom: 0;
443
justify-content: space-between;
444
- font-family: Inconsolata, Monaco, Consolas, 'Lucida Console', 'Courier New', Courier,
445
- monospace;
+ font-family:
+ Inconsolata, Monaco, Consolas, 'Lucida Console', 'Courier New', Courier, monospace;
446
}
447
448
.super-debug--right-status {
src/routes/(v1)/tests/redirect-submitting/styles.css
@@ -1,6 +1,7 @@
1
:root {
2
- --font-body: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
3
- Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+ --font-body:
+ Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
4
+ 'Open Sans', 'Helvetica Neue', sans-serif;
5
--font-mono: 'Fira Mono', monospace;
6
--color-bg-0: rgb(202, 216, 228);
7
--color-bg-1: hsl(209, 36%, 86%);
@@ -20,11 +21,8 @@ body {
20
21
background-attachment: fixed;
22
background-color: var(--color-bg-1);
23
background-size: 100vw 100vh;
- background-image: radial-gradient(
24
- 50% 50% at 50% 50%,
25
- rgba(255, 255, 255, 0.75) 0%,
26
- rgba(255, 255, 255, 0) 100%
27
- ),
+ background-image:
+ radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%),
28
linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%);
29
30
src/routes/(v2)/v2/component-regen/global.css
@@ -12,8 +12,9 @@
12
--sk-theme-1: hsl(15, 100%, 55%);
13
--sk-theme-2: hsl(240, 8%, 44%);
14
--sk-theme-3: hsl(204, 100%, 63%);
15
- --sk-font: 'Overpass', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
16
- Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
+ --sk-font:
+ 'Overpass', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
17
+ 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
18
--sk-font-mono: 'Fira Mono', monospace;
19
src/routes/(v2)/v2/issue-574/+page.server.ts
@@ -7,16 +7,20 @@ import { schema } from './schema.js';
8
export const load: PageServerLoad = async () => {
9
const adapter = schemasafe(schema);
10
- const defaultValue = {
11
- arr: [{
- tryInvalidValue: ''
- }]
- }
- return {
- form: await superValidate(defaultValue, adapter)
- };
+ const defaultValue = {
+ arr: [
+ {
+ tryInvalidValue: ''
+ }
+ ]
+ };
+ return {
+ form: await superValidate(defaultValue, adapter)
};
export const actions: Actions = {
src/routes/(v2)/v2/tainted-null-random/+page.svelte
@@ -12,18 +12,7 @@
dataType: 'json',
validators: zodClient(clientSchema)
});
- const {
- form: formData,
- enhance,
- errors,
- tainted,
- isTainted,
- delayed,
- allErrors,
- reset,
- message,
- constraints
- } = form;
+ const { form: formData, tainted } = form;
</script>
<h3>Bugged Form</h3>
src/routes/(v2)/v2/union-component/global.css
static/sakura.css
@@ -6,8 +6,9 @@
/* Body */
html {
font-size: 62.5%;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
- 'Noto Sans', sans-serif;
+ -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans',
+ sans-serif;
body {
@@ -37,8 +38,9 @@ h4,
37
38
h5,
39
h6 {
40
line-height: 1.1;
41
42
43
44
font-weight: 700;
45
margin-top: 3rem;
46
margin-bottom: 1.5rem;
0 commit comments