tangled
alpha
login
or
join now
vielle.dev
/
site
0
fork
atom
Personal Site
0
fork
atom
overview
issues
pulls
pipelines
Add minimal CSS reset
vielle.dev
7 months ago
b3d7704f
87bd5cc0
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+17
1 changed file
expand all
collapse all
unified
split
src
components
Base.astro
+17
src/components/Base.astro
···
15
15
<title>
16
16
{Astro.props.title ? `${Astro.props.title} | vielle.dev` : "vielle.dev"}
17
17
</title>
18
18
+
19
19
+
<style>
20
20
+
@layer reset {
21
21
+
:root {
22
22
+
font-family: sans-serif;
23
23
+
interpolate-size: allow-keywords
24
24
+
}
25
25
+
26
26
+
body {
27
27
+
margin: 0
28
28
+
}
29
29
+
30
30
+
img, svg, iframe, audio, video {
31
31
+
max-width: 100%;
32
32
+
}
33
33
+
}
34
34
+
</style>
18
35
<slot name="head" />
19
36
</head>
20
37
<body>