mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-15 05:56:36 +00:00
feat: flatten components/kit -> components folder
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<script lang="ts">
|
||||
interface Props {
|
||||
caption: string;
|
||||
value: string;
|
||||
}
|
||||
let { caption, value }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div class="meta-row">
|
||||
<span class="meta-caption">{caption}</span>
|
||||
<b class="meta-value">{value}</b>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.meta-row {
|
||||
gap: var(--space-s);
|
||||
display: grid;
|
||||
}
|
||||
.meta-caption {
|
||||
font-family: var(--font-mono);
|
||||
font-size: var(--font-size-s);
|
||||
color: var(--color-text-muted);
|
||||
line-height: normal;
|
||||
}
|
||||
.meta-value {
|
||||
margin-top: var(--space-s);
|
||||
line-height: normal;
|
||||
font: var(--font-size-s) var(--font-mono);
|
||||
color: var(--color-text);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user