Files
walden-tech-screen/src/app/(authenticated)/binner/components/ProductInfo/ProductInfo.module.scss
mifi 7119957c9e Initial commit
Load this up somewhere where I can setup CI/CD
2024-01-24 13:05:19 -05:00

57 lines
906 B
SCSS

.productInfo {
padding: 1rem;
label {
font-weight: 700;
font-size: 1.3em;
margin-bottom: 0.25rem;
}
input, select {
caret-color: transparent;
font-size: 1.36em;
margin-bottom: 1rem;
&[contenteditable=false] {
background-color: transparent;
border: none;
&:focus {
outline: none;
}
}
}
}
.attributes {
align-items: center;
display: flex;
flex-flow: row wrap;
gap: 0.5rem;
justify-content: center;
width: 100%;
}
.card {
display: flex;
flex-direction: column;
flex: 0 0 45%;
padding: 1rem;
}
.inputWithButton {
align-items: center;
display: flex;
flex-direction: row;
gap: 1rem;
input {
flex: 1 1 auto;
}
button {
flex: 0 0 auto;
padding: 0.5rem;
}
}