Add more opinionated styling to relationship display in grid
This commit is contained in:
parent
a1543e0b4f
commit
754ccf0e79
|
@ -47,12 +47,17 @@
|
|||
gap: var(--spacing-xs);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* This styling is opinionated to ensure these always look consistent */
|
||||
.linked-row {
|
||||
color: white;
|
||||
background-color: var(--ink);
|
||||
border-radius: var(--border-radius-l);
|
||||
background-color: #616161;
|
||||
border-radius: var(--border-radius-xs);
|
||||
padding: var(--spacing-xs) var(--spacing-s) calc(var(--spacing-xs) + 1px)
|
||||
var(--spacing-s);
|
||||
line-height: 1;
|
||||
font-size: 0.8em;
|
||||
font-family: var(--font-sans);
|
||||
font-weight: 500;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -13,7 +13,6 @@ export default async function getTable(tableId) {
|
|||
return null
|
||||
}
|
||||
if (!cache[tableId]) {
|
||||
console.log("cache miss for " + tableId)
|
||||
cache[tableId] = fetchTable(tableId)
|
||||
cache[tableId] = await cache[tableId]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue