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
57 lines
997 B
Plaintext
57 lines
997 B
Plaintext
@layer payload-default {
|
|
.upload-relationship-details {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
min-width: 0;
|
|
|
|
&__imageAndDetails {
|
|
display: flex;
|
|
gap: calc(var(--base) / 2);
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__thumbnail {
|
|
align-self: center;
|
|
border-radius: var(--style-radius-s);
|
|
}
|
|
|
|
&__details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
overflow: hidden;
|
|
margin-right: calc(var(--base) * 2);
|
|
}
|
|
|
|
&__filename {
|
|
margin: 0;
|
|
text-wrap: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&__meta {
|
|
margin: 0;
|
|
color: var(--theme-elevation-500);
|
|
text-wrap: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&__actions {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
}
|
|
|
|
.btn {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|