feat: search bar

This commit is contained in:
2025-12-14 20:29:15 -03:00
parent 57f721f85a
commit a12f66e594
4 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
.search-bar {
width: 100%;
height: 4rem;
padding: 1rem;
border: 1px solid #e1e1e1;
margin: 2rem 0;
}
.shadow {
-webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.7);
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}