28 lines
350 B
Svelte
28 lines
350 B
Svelte
|
|
<script>
|
||
|
|
export let name;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<h2>Hello {name}! 🧝🏿</h2>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
|
||
|
|
:global(main) {
|
||
|
|
text-align: center;
|
||
|
|
padding: 1em;
|
||
|
|
max-width: 240px;
|
||
|
|
margin: 0 auto;
|
||
|
|
|
||
|
|
@media (min-width: 640px) {
|
||
|
|
max-width: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
color: #ff3e00;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-size: 4em;
|
||
|
|
font-weight: 100;
|
||
|
|
}
|
||
|
|
|
||
|
|
</style>
|