57 lines
906 B
SCSS
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;
|
|
}
|
|
|
|
} |