Skip to content
Snippets Groups Projects
Commit 49976a1c authored by chinmayanand.pattar's avatar chinmayanand.pattar
Browse files

After scss changes

parent dc11ad18
Branches
No related tags found
No related merge requests found
$primary-color: #fff;
.inputBox{
display: flex;
width: 250px;
border-radius: 50px;
overflow: hidden;
background-color: #fff;
background-color: $primary-color;
padding: 5px;
transition: width .15s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}
......@@ -20,11 +21,11 @@
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
outline: #fff;
background-color: #fff;
outline: $primary-color;
background-color: $primary-color;
background-clip: padding-box;
border: 0px solid #fff !important;
border-color: #fff !important;
border: 0px solid $primary-color !important;
border-radius: 50px;
}
.icon{
......
import React from "react";
import PropTypes from "prop-types";
import SearchBar from "components/SearchBar/SearchBar";
function Login(props) {
return (
<>
<div> login</div>
<div style={{backgroundColor:'blue',padding:'20px'}}> login
<SearchBar/>
</div>
</>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment