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
55 lines
988 B
Plaintext
55 lines
988 B
Plaintext
@layer payload-default {
|
|
.relationship-table {
|
|
position: relative;
|
|
|
|
&__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: var(--base);
|
|
}
|
|
|
|
&__actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--base);
|
|
}
|
|
|
|
&__columns-inner {
|
|
padding-bottom: var(--base);
|
|
}
|
|
|
|
&__add-new-polymorphic-wrapper {
|
|
display: inline-flex;
|
|
}
|
|
|
|
&__add-new-polymorphic .btn__label {
|
|
display: flex;
|
|
text-wrap: nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.table {
|
|
table {
|
|
width: 100%;
|
|
overflow: auto;
|
|
|
|
[class^='cell'] > p,
|
|
[class^='cell'] > span,
|
|
[class^='cell'] > a {
|
|
line-clamp: 4;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 4;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
max-width: 100vw;
|
|
}
|
|
}
|
|
|
|
th,
|
|
td:first-child {
|
|
min-width: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|