Fix unscoped CSS leaking out

The missing scoped attribute cause h2 headers to no longer have the
expected top margin.  Fix by adding the intended scope attribute.
This commit is contained in:
Hornwitser 2025-09-20 20:43:11 +02:00
parent 753da6d3d4
commit 0083696343
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ const shifts = computed(() => {
});
</script>
<style>
<style scoped>
h2 {
margin-block-start: 0.2rem;
}