When I have a search bar and don't click on it, it looks like the image belowhttps://i.sstatic.net/SbDbf.png
But as soon as I type something, a blue border appears that I don't want. I'm not sure how to remove ithttps://i.sstatic.net/bOsjO.png
Here is the CSS code:
body{
background: whitesmoke;
}
.header{
display: flex;
/* width:50%; */
align-items:center;
justify-content: space-around;
border-bottom: 1px solid whitesmoke;
}
.header-middle {
display:flex;
flex:0.5;
align-items: center;
background-color: white;
padding: 5px;
margin-top: 10px;
border-radius: 10px;
}
.header-middle > .MuiSvgIcon-root {
color: grey;
background: transparent;
}
.header-middle > input {
border:none;
width:100%;
padding:10px;
outline-width: 0;
font-size: medium;
background-color: white;
}
Check out the GitHub repository for more information:GitHub Repository