Files
webgems/components/Search.vue
2019-05-14 15:52:45 +02:00

18 lines
280 B
Vue

<template lang="pug">
input.search(placeholder="Search (does not work currently, sorry)")
</template>
<style lang="scss">
input {
padding: .5rem 1.5rem .5rem 1.5rem;
border-radius: .3rem;
background: #eee;
font-size:12px;
&:focus {
outline:none;
}
}
</style>