fixup h1 usage

This commit is contained in:
Daniel Bulant 2025-09-02 22:02:37 +02:00
parent 76d9bd8112
commit 81b15ff88d
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -54,7 +54,7 @@
.header {
@apply text-black p-4 flex;
}
h1 {
h4 {
@apply text-big p-0 m-0 flex-grow;
}
.header.dark-bg {

View file

@ -4,12 +4,12 @@
let funny = { "amogus": "ඞ", "AMOGUS": "sussy baka", "discord": "proprietary matrix", "never gonna give you up": "never gonna let you down", "wysi": "727", "727": "wysi" };
</script>
<h1>Hello {funny[name] || name}</h1>
<h4>Hello {funny[name] || name}</h4>
<input type=text class="text-black" bind:value={name}>
<style lang="postcss">
h1 {
h4 {
@apply p-0 m-0 text-xl font-bold;
}
input {