You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
491 B
33 lines
491 B
.row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
gap: 2em;
|
|
}
|
|
|
|
.row img {
|
|
border-radius: 10px;
|
|
box-shadow: var(--box-shadow);
|
|
}
|
|
|
|
.gapped {
|
|
width: 500px;
|
|
display: flex;
|
|
gap: 1em;
|
|
}
|
|
|
|
.price {
|
|
background-color: var(--theme-color);
|
|
padding: 0.3em 0.7em;
|
|
}
|
|
|
|
/* mobile */
|
|
@media (max-aspect-ratio: 5/6) {
|
|
.row {
|
|
flex-direction: column;
|
|
}
|
|
.gapped {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
} |