glide-design-system
Version:
Glide design system is an open-source React component library. It offers numerous benefits that make them essential tools for design and development teams.
92 lines (78 loc) • 1.46 kB
CSS
.countryCodeContainer {
background-color: white;
font-family: "Roboto", sans-serif;
border-radius: 3px;
font-size: 16px;
}
.countryCodeContainer {
display: flex;
flex-direction: column;
margin-top: 5px;
margin-bottom: 5px;
}
.optionColorHover {
color: white;
background-color: #0096ff;
}
.optionColorNotHover {
color: black;
background-color: white;
}
.optionsListUnselected {
margin-bottom: 3px;
padding-left: 20px;
padding-right: 20px;
}
.optionsListSelected{
margin-bottom: 3px;
padding-left: 20px;
padding-right: 20px;
color: white;
background-color: #0096ff;
}
.inputField {
border: none;
border-radius: 5px;
}
.countryCodeField {
width: 30px;
font-size: 16px;
margin-left: 12px;
cursor: pointer;
}
.inputField:focus {
border: none;
outline: none;
}
.countryCodeParentInput {
border: 1px solid #d7d7d7;
display: flex;
align-items: center;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
width: 71px;
height: 36px;
font-size: 16px;
}
.phNoParentInput {
border: 1px solid #d7d7d7;
padding-left: 18px;
display: flex;
align-items: center;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
font-size: 16px;
}
.required{
color: red;
font-size: 20px;
margin-left: 4px;
margin-top: 2px;
}
.headers {
font-family: "Roboto", sans-serif;
font-size: 14px;
margin-bottom: 5px;
display: flex;
align-items: center;
}