Skip to content

Commit 6799780

Browse files
fix: toolbar group dividers reference correct css variable (tldraw#8734)
In the toolbar-groups example there's an incorrect css variable reference that makes the example not work correctly
1 parent 2cd18d6 commit 6799780

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/tldraw/src/lib/ui.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,20 +1418,20 @@ tldraw? probably.
14181418
display: none;
14191419
}
14201420
.tlui-row.tlui-main-toolbar__group:not(:nth-last-child(-n + 1 of [data-toolbar-visible='true'])) {
1421-
border-right: 1px solid var(--color-divider);
1421+
border-right: 1px solid var(--tl-color-divider);
14221422
margin-right: 2px;
14231423
}
14241424
.tlui-column.tlui-main-toolbar__group:not(
14251425
:nth-last-child(-n + 1 of [data-toolbar-visible='true'])
14261426
) {
1427-
border-bottom: 1px solid var(--color-divider);
1427+
border-bottom: 1px solid var(--tl-color-divider);
14281428
margin-bottom: 2px;
14291429
}
14301430
.tlui-grid.tlui-main-toolbar__group {
14311431
grid-column: 1 / span 4;
14321432
}
14331433
.tlui-grid.tlui-main-toolbar__group:not(:nth-last-child(-n + 1 of [data-toolbar-visible='true'])) {
1434-
border-bottom: 1px solid var(--color-divider);
1434+
border-bottom: 1px solid var(--tl-color-divider);
14351435
margin-bottom: 2px;
14361436
}
14371437

0 commit comments

Comments
 (0)