website/components/Input.vue

28 lines
435 B
Vue
Raw Normal View History

2023-04-16 20:12:24 +03:00
<template>
<input v-on:keyup="keyup" :placeholder="placeholder" :type="type" />
2023-04-16 20:12:24 +03:00
</template>
<script>
export default {
props: ["keyup", "placeholder", "type"]
2023-04-16 20:12:24 +03:00
}
</script>
<style scoped>
input {
width: 500px;
font-size: 25px;
padding: 20px;
border-radius: 20px;
background: var(--dark-two);
border: none;
color: white;
outline: none;
transition: 0.4s;
2023-04-16 20:12:24 +03:00
}
input:focus {
box-shadow: var(--def-shadow);
2023-04-16 20:12:24 +03:00
}
</style>