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.
 
 
 
 
 

22 lines
406 B

<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>