This commit is contained in:
André Weller
2019-05-12 00:53:44 +02:00
parent b4dfd58208
commit e2d8f8ff05
11 changed files with 281 additions and 125 deletions

17
components/Search.vue Normal file
View File

@@ -0,0 +1,17 @@
<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>