Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
103 lines
1.7 KiB
Plaintext
103 lines
1.7 KiB
Plaintext
@import '../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.items-drawer {
|
|
&__items-wrapper {
|
|
padding-top: base(1.5);
|
|
}
|
|
|
|
&__items {
|
|
position: relative;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: grid;
|
|
grid-template-columns: repeat(6, 1fr);
|
|
gap: base(1);
|
|
}
|
|
|
|
&__default-image {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
aspect-ratio: 3 / 2;
|
|
overflow: hidden;
|
|
|
|
img,
|
|
svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
&__item-groups {
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: base(1.5);
|
|
}
|
|
|
|
&__item-group {
|
|
list-style: none;
|
|
}
|
|
|
|
&__item-group-label {
|
|
padding-bottom: base(0.5);
|
|
}
|
|
|
|
&__item-group-none {
|
|
order: 1;
|
|
padding-top: base(1.5);
|
|
border-top: 1px solid var(--theme-border-color);
|
|
|
|
&:only-child {
|
|
padding-top: 0;
|
|
border-top: 0;
|
|
}
|
|
}
|
|
|
|
@include large-break {
|
|
&__items {
|
|
grid-template-columns: repeat(5, 1fr);
|
|
}
|
|
}
|
|
|
|
@include mid-break {
|
|
&__items-wrapper {
|
|
padding-top: base(1.75);
|
|
}
|
|
|
|
&__items {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
&__item-groups {
|
|
gap: base(1.75);
|
|
}
|
|
|
|
&__item-group-none {
|
|
padding-top: base(1.75);
|
|
}
|
|
}
|
|
|
|
@include small-break {
|
|
&__items-wrapper {
|
|
padding-top: base(0.75);
|
|
}
|
|
|
|
&__items {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
&__item-groups {
|
|
gap: base(0.75);
|
|
}
|
|
|
|
&__item-group-none {
|
|
padding-top: base(0.75);
|
|
}
|
|
}
|
|
}
|
|
}
|