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.
55 lines (52 loc) • 957 B
CSS
.textfieldIcon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.textfieldParentContainer {
display: flex;
border-radius: 5px;
border: 1px solid #d7d7d7;
background-color: #ffffff;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
color: #999999;
text-align: left;
overflow: hidden;
width: 342px;
padding: 8px;
}
.textfield {
border: none;
max-height: 100%;
width: 100%;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
color: #333333;
}
.textfield::placeholder {
color: #a8a6a6;
}
.textfield:hover:focus:active {
border: none;
}
.textfield:focus-visible {
outline-style: none;
}
.textfield:disabled {
background-color: #f9f9f9;
}
.headers {
font-family: "Roboto", sans-serif;
font-size: 14px;
display: flex;
align-items: center;
font-weight: 500;
}
.required {
color: red;
font-size: 20px;
margin-left: 4px;
margin-top: 2px;
}