18 lines
272 B
Vue
18 lines
272 B
Vue
<template lang="pug">
|
|
input.search(placeholder="Search (does not work currently, sorry)")
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
input {
|
|
width: 50%;
|
|
padding: .7rem 2rem .7rem 2rem;
|
|
border-radius: .5rem;
|
|
background: #eee;
|
|
|
|
&:focus {
|
|
outline:none;
|
|
}
|
|
}
|
|
|
|
</style>
|