2021-11-14 17:35:37 +02:00
|
|
|
<script>
|
2021-11-20 17:42:59 +02:00
|
|
|
import BaseButton from "./BaseButton.svelte";
|
|
|
|
|
|
|
|
|
2021-11-14 19:07:05 +02:00
|
|
|
|
2021-11-14 17:35:37 +02:00
|
|
|
</script>
|
|
|
|
|
2021-11-20 17:42:59 +02:00
|
|
|
<div class="orange">
|
|
|
|
<BaseButton on:click>
|
2021-11-14 19:07:05 +02:00
|
|
|
<slot></slot>
|
2021-11-20 17:42:59 +02:00
|
|
|
</BaseButton>
|
|
|
|
</div>
|
2021-11-14 19:07:05 +02:00
|
|
|
|
|
|
|
<style>
|
2021-11-20 17:42:59 +02:00
|
|
|
.orange {
|
2021-11-14 19:07:05 +02:00
|
|
|
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>
|