Newer
Older
CamaraComercioWeb / src / app / shared / components / search / search.component.scss
Fabian Vera on 28 Sep 2021 589 bytes [add] starting the project
.search{
    width: --webkit-fil-available;
    padding: .5rem 1rem;
    margin: 0 !important;
    border-radius: var(--rounded-small);
   
    input{
        border: none;
        background: rgb(226, 226, 226);
        padding: .5rem 1rem;
        outline: none;
        border: solid 1px rgb(212, 212, 212);
        border-radius: var(--rounded-small) 0 0 var(--rounded-small);
    }
    button{
        width: 3rem;
        border: none;
        padding: .5rem;
        border: solid 1px rgb(212, 212, 212);
        border-radius: 0 var(--rounded-small) var(--rounded-small) 0;
    }
}