tangled
alpha
login
or
join now
gm112.bsky.social
/
org.neocities.gm112
0
fork
atom
Code for https://gm112.neocities.org/
gm112.neocities.org/
0
fork
atom
overview
issues
4
pulls
pipelines
fix: adjust styles for list elements
gm112.bsky.social
3 weeks ago
24c7a816
37a774a7
1/1
deploy.yaml
success
3w ago
+11
-7
3 changed files
expand all
collapse all
unified
split
app
app.config.ts
assets
main.css
pages
about.vue
+4
app/app.config.ts
···
131
131
},
132
132
},
133
133
134
134
+
ul: {
135
135
+
base: '[.list-disc]:marker:[content:"-"]',
136
136
+
},
137
137
+
134
138
pre: {
135
139
slots: {
136
140
filename: 'text-base',
-4
app/assets/main.css
···
45
45
}
46
46
47
47
@layer theme {
48
48
-
:root,
49
49
-
:host,
50
48
.light {
51
49
--ui-bg: var(--ui-color-primary-800);
52
50
--ui-bg-muted: oklch(from var(--ui-primary) calc(l - 0.5) c h / 0.5);
···
59
57
--ui-text-highlighted: var(--color-alttp-white-50);
60
58
}
61
59
62
62
-
:root.dark,
63
63
-
:host.dark,
64
60
.dark {
65
61
--ui-bg: var(--color-neutral-950);
66
62
::selection {
+7
-3
app/pages/about.vue
···
7
7
</header>
8
8
<section>
9
9
<h1 class="text-[32px] border-b mb-2">{{ t('credits.header') }}</h1>
10
10
-
<ul class="list-disc list-inside">
10
10
+
<ul class="list-disc list-inside [.list-disc]:marker:[content:'-']">
11
11
<li class="mb-2">
12
12
-
<u-link to="https://zeldauniverse.net/media/fonts/" target="_blank">
12
12
+
<u-link to="https://zeldauniverse.net/media/fonts/" target="_blank" class="px-1">
13
13
{{ t('credits.zelda_universe.link_text') }}
14
14
</u-link>
15
15
16
16
{{ t('credits.zelda_universe.for') }}
17
17
</li>
18
18
<li class="mb-2">
19
19
-
<u-link to="https://tangled.org/gm112.bsky.social/org.neocities.gm112" target="_blank">
19
19
+
<u-link
20
20
+
to="https://tangled.org/gm112.bsky.social/org.neocities.gm112"
21
21
+
target="_blank"
22
22
+
class="px-1"
23
23
+
>
20
24
{{ t('credits.source_code.link_text') }}
21
25
</u-link>
22
26
</li>