mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
Integrate nav
- other minor refactors
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<template>
|
||||
<div id="nav-search">
|
||||
<form>
|
||||
<input
|
||||
type="search"
|
||||
name=""
|
||||
id=""
|
||||
placeholder="Search this playlist"
|
||||
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%;
|
||||
min-width: 24rem;
|
||||
color: $white;
|
||||
font-size: 1rem;
|
||||
|
||||
&:focus {
|
||||
outline: solid $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user