@objectifthunes/whiteboard 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/whiteboard.css +10 -4
- package/package.json +1 -1
package/dist/whiteboard.css
CHANGED
|
@@ -1617,17 +1617,23 @@ button.chip:hover {
|
|
|
1617
1617
|
}
|
|
1618
1618
|
|
|
1619
1619
|
.toolbar .chip {
|
|
1620
|
+
/* the document name is primary info, not a tag — give it presence
|
|
1621
|
+
and a background that doesn't melt into the bar */
|
|
1620
1622
|
font-size: var(--wb-fs-sm);
|
|
1623
|
+
color: var(--wb-text-secondary);
|
|
1624
|
+
background: var(--wb-surface-soft);
|
|
1621
1625
|
}
|
|
1622
1626
|
|
|
1623
|
-
/* the vertical toolbar reads as app chrome too
|
|
1627
|
+
/* the vertical toolbar reads as app chrome too — the GLYPHS carry the
|
|
1628
|
+
size, not the padding */
|
|
1624
1629
|
.vertical-toolbar {
|
|
1625
|
-
padding: 0.
|
|
1630
|
+
padding: 0.4rem;
|
|
1626
1631
|
}
|
|
1627
1632
|
|
|
1628
1633
|
.vertical-toolbar .wb-btn--icon-only {
|
|
1629
|
-
padding: 0.
|
|
1630
|
-
font-size: var(--wb-fs-
|
|
1634
|
+
padding: 0.45rem;
|
|
1635
|
+
font-size: var(--wb-fs-lg);
|
|
1636
|
+
line-height: 1;
|
|
1631
1637
|
}
|
|
1632
1638
|
|
|
1633
1639
|
/* ── Draggable ───────────────────────────────────────────────────────── */
|