personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

entities: increase type-indicator and facet dot sizes for readability

Increase the entity card type indicator and facet dots so they read
as intentional badges instead of stray artifacts.

This is a CSS-only change in workspace.html touching four properties
across three selectors, with no HTML or JavaScript changes.

+6 -6
+6 -6
apps/entities/workspace.html
··· 163 163 position: absolute; 164 164 bottom: 0.65em; 165 165 left: 0.85em; 166 - width: 8px; 167 - height: 8px; 166 + width: 10px; 167 + height: 10px; 168 168 border-radius: 50%; 169 169 background: var(--type-color, #95a5a6); 170 170 } ··· 937 937 /* Facet dots on entity cards */ 938 938 .entity-card-facet-dots { 939 939 display: flex; 940 - gap: 3px; 941 - margin-top: 4px; 940 + gap: 4px; 941 + margin-top: 6px; 942 942 } 943 943 944 944 .entity-facet-dot { 945 - width: 8px; 946 - height: 8px; 945 + width: 10px; 946 + height: 10px; 947 947 border-radius: 50%; 948 948 flex-shrink: 0; 949 949 }