mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: the dark mode color
This commit is contained in:
parent
d5c08a3c80
commit
b2d6876347
@ -7,7 +7,7 @@ describe('convert yjs data to slate content', () => {
|
||||
it('should return undefined if root block is not exist', () => {
|
||||
const doc = new Y.Doc();
|
||||
|
||||
expect(() => yDocToSlateContent(doc)).toBeUndefined();
|
||||
expect(yDocToSlateContent(doc)).toBeUndefined();
|
||||
|
||||
const doc2 = withTestingYDoc('1');
|
||||
const { blocks, childrenMap, textMap, pageId } = getTestingDocData(doc2);
|
||||
|
@ -1,3 +1,3 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="9" cy="9" r="2.75" fill="#454545"/>
|
||||
<circle cx="9" cy="9" r="2.75" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 151 B After Width: | Height: | Size: 160 B |
@ -1,3 +1,3 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="9" cy="9" r="2.75" stroke="#454545"/>
|
||||
<circle cx="9" cy="9" r="2.75" stroke="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 153 B After Width: | Height: | Size: 162 B |
@ -1,3 +1,3 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="5" height="5" transform="translate(6.5 6.5)" fill="#454545"/>
|
||||
<rect width="5" height="5" transform="translate(6.5 6.5)" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 187 B |
Loading…
Reference in New Issue
Block a user