Files
webgems/components/Search.vue
T
André Weller e2d8f8ff05 update
2019-05-12 00:53:44 +02:00

18 lines
239 B
Vue

<template lang="pug">
input.search(placeholder="Search")
</template>
<style lang="scss">
input {
width: 50%;
padding: .7rem 2rem .7rem 2rem;
border-radius: .5rem;
background: #eee;
&:focus {
outline:none;
}
}
</style>