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
29 lines
577 B
Plaintext
29 lines
577 B
Plaintext
@layer payload-default {
|
|
.upload-field-card {
|
|
background: var(--theme-elevation-50);
|
|
border: 1px solid var(--theme-border-color);
|
|
border-radius: var(--style-radius-s);
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
gap: calc(var(--base) / 2);
|
|
|
|
&--size-medium {
|
|
padding: calc(var(--base) * 0.5);
|
|
|
|
.thumbnail {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
}
|
|
|
|
&--size-small {
|
|
padding: calc(var(--base) / 3) calc(var(--base) / 2);
|
|
.thumbnail {
|
|
width: 25px;
|
|
height: 25px;
|
|
}
|
|
}
|
|
}
|
|
}
|