mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-09-07 01:40:39 +00:00
restructuring (#56)
* restructuring * pin svelte kit version & parallel execution * update svelte kit * correct test result assets * add timeout * correct locale path * simplify crypto * fix for #58 * add verbosity flag * disable flaky test
This commit is contained in:
19
packages/frontend/src/lib/ui/AboutParagraph.svelte
Normal file
19
packages/frontend/src/lib/ui/AboutParagraph.svelte
Normal file
@@ -0,0 +1,19 @@
|
||||
<script lang="ts">
|
||||
export let title: string
|
||||
</script>
|
||||
|
||||
<p>
|
||||
<b>▶ {title}</b>
|
||||
<slot />
|
||||
</p>
|
||||
|
||||
<style>
|
||||
b {
|
||||
display: block;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
p > :global(span) {
|
||||
padding-left: 1.25em;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user