18 lines
280 B
Vue
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>
|