mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-04-21 02:33:54 +03:00
22 lines
No EOL
406 B
Svelte
22 lines
No EOL
406 B
Svelte
<script>
|
|
import BaseButton from "./BaseButton.svelte";
|
|
|
|
let clazz = "";
|
|
export {clazz as class};
|
|
|
|
</script>
|
|
|
|
<div class="orange {clazz}">
|
|
<BaseButton on:click>
|
|
<slot></slot>
|
|
</BaseButton>
|
|
</div>
|
|
|
|
<style>
|
|
.orange {
|
|
background: linear-gradient(272.39deg, rgba(247, 175, 67, 0.93) -34.2%, rgba(245, 72, 17, 0.93) 100%);
|
|
box-shadow: 0px 8px 4px rgba(0, 0, 0, 0.25);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
</style> |