Skip to content

Commit e208d86

Browse files
committed
update deps
1 parent a300c55 commit e208d86

File tree

8 files changed

+48
-36
lines changed

8 files changed

+48
-36
lines changed

.changeset/late-crabs-drop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ryanatkn/fuz_code": minor
3+
---
4+
5+
update deps

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
"@changesets/changelog-git": "^0.2.1",
4646
"@ryanatkn/belt": "^0.30.2",
4747
"@ryanatkn/eslint-config": "^0.8.0",
48-
"@ryanatkn/fuz": "^0.140.0",
49-
"@ryanatkn/gro": "^0.153.1",
50-
"@ryanatkn/moss": "^0.27.0",
48+
"@ryanatkn/fuz": "^0.141.1",
49+
"@ryanatkn/gro": "^0.154.0",
50+
"@ryanatkn/moss": "^0.28.0",
5151
"@sveltejs/adapter-static": "^3.0.8",
5252
"@sveltejs/kit": "^2.20.8",
5353
"@sveltejs/package": "^2.3.11",

src/lib/Code.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<style>
4949
.code {
5050
background-color: var(--fg_1);
51-
border-radius: var(--radius_xs);
51+
border-radius: var(--border_radius_xs);
5252
padding: var(--space_xs3) var(--space_xs);
5353
}
5454
code {

src/routes/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
</aside>
2626
</section>
2727
<section class="panel">
28-
<div class="bg shadow_sm radius_xs">
28+
<div class="bg shadow_sm border_radius_xs">
2929
<Code_Tome />
3030
</div>
3131
</section>
32-
<section class="box gap_xl3 size_xl2">
33-
<!-- TODO large variants of the chip? using `--size`? -->
32+
<section class="box gap_xl3 font_size_xl2">
33+
<!-- TODO large variants of the chip? using `--font_size`? -->
3434
<a href="{base}/samples" class="chip px_xl py_sm">samples</a>
3535
<a href="{base}/about" class="chip px_xl py_sm">about</a>
3636
</section>

src/routes/moss.css

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/* A panel is a box embedded into the page, useful for visually isolating content. */
2828
.panel {
29-
border-radius: var(--radius_xs);
29+
border-radius: var(--border_radius_xs);
3030
background-color: var(--panel_bg, var(--fg_1));
3131
}
3232

@@ -35,30 +35,37 @@
3535
padding-left: var(--space_xs);
3636
padding-right: var(--space_xs);
3737
background-color: var(--fg_1);
38-
border-radius: var(--radius_xs);
38+
border-radius: var(--border_radius_xs);
3939
}
4040
a.chip {
4141
font-weight: 700;
4242
}
4343

4444
.pre {
45-
font-family: var(--font_mono);
45+
font-family: var(--font_family_mono);
4646
color: var(--text_color, var(--text_color_3));
4747
overflow: auto;
4848
max-width: 100%;
4949
}
5050
.pre > code {
51-
font-size: var(--size_sm); /* TODO @many use a var? maybe computed from generic `--size`? */
51+
font-size: var(
52+
--font_size_sm
53+
); /* TODO @many use a var? maybe computed from generic `--font_size`? */
5254
font-weight: 500;
5355
}
5456
.pre:not(.inline) > code {
5557
display: block;
5658
}
5759

58-
.inline {
59-
display: inline;
60+
.relative {
61+
position: relative;
6062
}
61-
.flex {
63+
/** Same as `display: inline flow-root`. */
64+
.display_inline_block {
65+
display: inline-block;
66+
}
67+
/** Same as `display: block flex`. */
68+
.display_flex {
6269
display: flex;
6370
}
6471
.flex_1 {
@@ -70,18 +77,18 @@ a.chip {
7077
.justify_content_space_around {
7178
justify-content: space-around;
7279
}
73-
.size_xl2 {
74-
font-size: var(--size_xl2);
75-
--size: var(--size_xl2);
80+
.font_size_xl2 {
81+
font-size: var(--font_size_xl2);
82+
--font_size: var(--font_size_xl2);
7683
}
7784
.text_align_center {
7885
text-align: center;
7986
}
8087
.bg {
8188
background-color: var(--bg);
8289
}
83-
.radius_xs {
84-
border-radius: var(--radius_xs);
90+
.border_radius_xs {
91+
border-radius: var(--border_radius_xs);
8592
}
8693
.shadow_sm {
8794
box-shadow: var(--shadow_sm)

src/routes/package.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export const package_json = {
3434
'@changesets/changelog-git': '^0.2.1',
3535
'@ryanatkn/belt': '^0.30.2',
3636
'@ryanatkn/eslint-config': '^0.8.0',
37-
'@ryanatkn/fuz': '^0.140.0',
38-
'@ryanatkn/gro': '^0.153.1',
39-
'@ryanatkn/moss': '^0.27.0',
37+
'@ryanatkn/fuz': '^0.141.1',
38+
'@ryanatkn/gro': '^0.154.0',
39+
'@ryanatkn/moss': '^0.28.0',
4040
'@sveltejs/adapter-static': '^3.0.8',
4141
'@sveltejs/kit': '^2.20.8',
4242
'@sveltejs/package': '^2.3.11',

src/routes/samples/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<main class="box w_100">
99
<Breadcrumb>🎨</Breadcrumb>
10-
<div class="flex flex_wrap justify_content_space_around">
10+
<div class="display_flex flex_wrap justify_content_space_around">
1111
{#each samples as { content, lang } (lang)}
1212
<div>
1313
<h2>{lang}</h2>

0 commit comments

Comments
 (0)