json UI improvements

This commit is contained in:
SPRINX0\prochazka
2025-10-29 13:08:37 +01:00
parent 0e2a77ced7
commit 6934cdd122
5 changed files with 50 additions and 7 deletions

View File

@@ -1,19 +1,28 @@
<script lang="ts">
export let text: string;
export let colorClass: string = 'premium-gradient';
export let link: string;
</script>
<div class="highlight {colorClass}">
{text}
</div>
{#if link}
<a class="highlight {colorClass}" href={link}>
{text}
</a>
{:else}
<div class="highlight {colorClass}">
{text}
</div>
{/if}
<style>
.highlight {
display: block;
text-align: center;
margin: 10px;
font-size: large;
font-weight: bold;
border: 1px solid;
padding: 5px;
text-decoration: none;
}
</style>