Files
webgems/components/Search.vue
André Weller 549af56b32 fix mobile
2019-05-14 15:42:41 +02:00

18 lines
276 B
Vue

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