1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-05 02:45:18 +02:00
flame/client/src/components/SearchBar/SearchBar.module.css

17 lines
317 B
CSS
Raw Normal View History

.SearchBar {
2021-06-24 12:53:45 +02:00
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 {
2021-06-24 12:53:45 +02:00
opacity: 1;
outline: none;
}