reusable-react-libs
Version:
Common reusable react components
41 lines (36 loc) • 669 B
CSS
.item-container {
width: min(300px, 100%);
height: 100%;
background-color: white;
box-shadow: 5px 5px 10px;
padding: 0 35px;
}
.item-container form {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
gap: 15px;
text-align: center;
}
.item-container form input {
width: 100%;
}
.item-container form button {
width: auto;
padding: 0 15px;
background-color: inherit;
cursor: pointer;
}
.item-container form button,
.item-container form input {
border-radius: 5px;
height: 45px;
}
.item-container .feature-header {
display: flex;
align-items: center;
justify-content: center;
height: 100px;
color: brown;
}