This commit is contained in:
SPRINX0\prochazka
2025-10-27 13:10:45 +01:00
parent c741434e3c
commit 64c2faf538
11 changed files with 195 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
<script lang="ts">
export let text: string;
export let colorClass: string = 'premium-gradient';
</script>
<div class="highlight {colorClass}">
{text}
</div>
<style>
.highlight {
text-align: center;
margin: 10px;
font-size: large;
font-weight: bold;
border: 1px solid;
padding: 5px;
}
</style>