mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-06 04:23:11 +08:00
Added warning about unsupported prefix. Added support for Spotify search. Edited README file
This commit is contained in:
17
client/src/components/SearchBar/SearchBar.module.css
Normal file
17
client/src/components/SearchBar/SearchBar.module.css
Normal file
@@ -0,0 +1,17 @@
|
||||
.SearchBar {
|
||||
width: 100%;
|
||||
padding: 10px 0;
|
||||
color: var(--color-primary);
|
||||
/* font-size: 20px; */
|
||||
margin-bottom: 20px;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
border-bottom: 2px solid var(--color-accent);
|
||||
opacity: 0.5;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.SearchBar:focus {
|
||||
opacity: 1;
|
||||
outline: none;
|
||||
}
|
||||
Reference in New Issue
Block a user