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.
51 lines (49 loc) • 930 B
CSS
.inputFieldContainer {
border: 1px solid #ddd;
border-radius: 5px;
width: 350px;
height: 40px;
display: flex;
align-items: center;
}
.focused {
border: 1px solid #0a5dc2;
}
.headers {
font-family: "Roboto", sans-serif;
font-size: 14px;
margin-bottom: 5px;
}
.inputField {
margin-left: 10px;
border: none;
outline: none;
width: 100%;
min-height: 30px;
align-self: center;
}
.parentContainer{
display: flex;
row-gap:16px;
flex-direction: column;
}
.fledContainer{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 750px;
column-gap: 8px;
}
.required{
color: red;
font-size: 20px;
margin-left: 4px;
margin-top: 2px;
}
.headers2 {
font-family: "Roboto", sans-serif;
font-size: 14px;
margin-bottom: 5px;
display: flex;
align-items: center;
}