budibase/packages/builder/src/common/ActionButton.svelte

31 lines
499 B
Svelte
Raw Normal View History

2020-01-30 17:22:19 +01:00
<script>
export let disabled = false;
</script>
<style>
.action-button {
color: #0055ff;
background: rgb(54, 133, 249, 0.1);
font-size: 18px;
font-weight: bold;
border-radius: 5px;
border: none;
width: 167px;
height: 64px;
}
.action-button:hover {
cursor: pointer;
}
.action-button:disabled {
color:#163057;
cursor: default;
background: transparent;
}
</style>
<button on:click class="action-button" {disabled}>
<slot />
</button>