fmt: reformat App.svelte according to prettier

This commit is contained in:
Raito Bezarius 2021-11-20 00:10:46 +01:00
parent d09c1045df
commit 0d2e61769e

View file

@ -13,8 +13,8 @@
}; };
</script> </script>
<div style='height:100vh'> <div style="height:100vh">
<FullCalendar {options} /> <FullCalendar {options} />
</div> </div>
<style> <style>
@ -22,23 +22,23 @@
height: 100vh; height: 100vh;
} }
main { main {
text-align: center; text-align: center;
padding: 1em; padding: 1em;
max-width: 240px; max-width: 240px;
margin: 0 auto; margin: 0 auto;
} }
h1 { h1 {
color: #ff3e00; color: #ff3e00;
text-transform: uppercase; text-transform: uppercase;
font-size: 4em; font-size: 4em;
font-weight: 100; font-weight: 100;
} }
@media (min-width: 640px) { @media (min-width: 640px) {
main { main {
max-width: none; max-width: none;
} }
} }
</style> </style>