45 lines
481 B
SCSS
45 lines
481 B
SCSS
|
.product-container {
|
||
|
display: flex;
|
||
|
|
||
|
flex-wrap: wrap;
|
||
|
& > div {
|
||
|
width: 49%;
|
||
|
padding: 1em;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.product-image {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.name-price-container {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: flex-end;
|
||
|
}
|
||
|
|
||
|
.price-currency {
|
||
|
font-size: 0.85em;
|
||
|
opacity: 0.55;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.product-commands {
|
||
|
&, button {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
.admin-menu {
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
& * {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.admin-menu-button {
|
||
|
width: 100%;
|
||
|
}
|