mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
36 lines
535 B
Vue
36 lines
535 B
Vue
<template>
|
|
<div id="nav-search">
|
|
<form>
|
|
<input
|
|
type="search"
|
|
name=""
|
|
id=""
|
|
placeholder="Search here"
|
|
class="rounded"
|
|
/>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
#nav-search {
|
|
form {
|
|
display: flex;
|
|
gap: $small;
|
|
|
|
input[type="search"] {
|
|
background-color: $gray5;
|
|
border: none;
|
|
padding: $small;
|
|
width: 100%;
|
|
color: $white;
|
|
font-size: 1rem;
|
|
|
|
&:focus {
|
|
outline: solid $accent;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|