1
0
Fork 0
mirror of synced 2024-09-13 07:53:31 +12:00
budibase/packages/builder/src/common/Select.svelte

55 lines
994 B
Svelte
Raw Normal View History

<script>
2020-02-03 22:50:30 +13:00
import getIcon from "./icon"
export let value
</script>
2020-02-03 22:50:30 +13:00
<div class="select-container">
<select on:change {value}>
<slot />
</select>
<span class="arrow">
{@html getIcon('chevron-down', '24')}
</span>
</div>
<style>
.select-container {
padding-bottom: 10px;
font-size: 0.9rem;
color: var(--secondary50);
font-weight: bold;
position: relative;
max-width: 300px;
}
select {
display: block;
font-family: sans-serif;
2020-01-31 05:22:19 +13:00
font-weight: 500;
color: #163057;
padding: 1em 2.6em 0.9em 1.4em;
width: 100%;
max-width: 100%;
box-sizing: border-box;
margin: 0;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
2020-01-31 05:22:19 +13:00
background: #fff;
border: 1px solid #ccc;
2020-02-22 07:02:02 +13:00
height: 35px;
}
.arrow {
position: absolute;
right: 10px;
top: 0;
bottom: 0;
margin: auto;
width: 30px;
height: 30px;
pointer-events: none;
color: var(--primary100);
}
</style>