Project, Web Technologies, Year 3, Semester 1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
358 B

<script>
import BaseButton from "./BaseButton.svelte";
3 years ago
</script>
<div class="orange">
<BaseButton on:click>
3 years ago
<slot></slot>
</BaseButton>
</div>
3 years ago
<style>
.orange {
3 years ago
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>