Skip to content

Commit 301fdb9

Browse files
committed
improvement(tables): multi-select and efficiencies
1 parent 4afc3bb commit 301fdb9

File tree

3 files changed

+397
-91
lines changed

3 files changed

+397
-91
lines changed

apps/sim/app/workspace/[workspaceId]/components/resource/resource.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export function Resource({
173173
return (
174174
<th
175175
key={col.id}
176-
className='h-10 px-[24px] py-[6px] text-left align-middle font-base text-[var(--text-muted)]'
176+
className='h-10 px-[24px] py-[6px] text-left align-middle font-base text-[12px] text-[var(--text-muted)]'
177177
>
178178
{col.header}
179179
</th>

apps/sim/app/workspace/[workspaceId]/logs/components/log-details/log-details.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ export const LogDetails = memo(function LogDetails({
344344
)}
345345

346346
<div
347-
className={`absolute top-[0px] right-0 bottom-0 z-50 transform overflow-hidden border-l bg-[var(--surface-1)] shadow-md transition-transform duration-200 ease-out ${
347+
className={`absolute top-[0px] right-0 bottom-0 z-50 transform overflow-hidden border-l bg-white shadow-md transition-transform duration-200 ease-out dark:bg-[var(--bg)] ${
348348
isOpen ? 'translate-x-0' : 'translate-x-full'
349349
}`}
350350
style={{ width: `${panelWidth}px` }}

0 commit comments

Comments
 (0)