frontend cleanup

This commit is contained in:
Priler 2026-01-04 22:50:34 +05:00
parent 78eb0c0080
commit 4ceaa7ff20
38 changed files with 2873 additions and 1180 deletions

View file

@ -0,0 +1,18 @@
<script>
export let no_margin = false;
</script>
<div class="h-divider" class:no-margin="{no_margin}"></div>
<style lang="scss">
.h-divider {
margin: 20px 0;
height: 40px;
background-image: url(media/images/decor.png);
background-position: center;
&.no-margin {
margin: 0;
}
}
</style>