mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-04-10 03:13:00 +00:00
* 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
19 lines
329 B
Svelte
19 lines
329 B
Svelte
<button {...$$restProps} on:click><slot /></button>
|
|
|
|
<style>
|
|
button {
|
|
width: auto;
|
|
display: inline-block;
|
|
padding: 0.25rem 2.5rem;
|
|
border: 2px solid var(--ui-bg-2);
|
|
background: var(--ui-bg-1);
|
|
outline: none;
|
|
cursor: pointer;
|
|
height: 2.5rem;
|
|
}
|
|
|
|
button:hover {
|
|
border-color: var(--ui-clr-primary);
|
|
}
|
|
</style>
|