Skip to content

Commit 2285737

Browse files
authored
Merge pull request #33 from jackdbd/canary
Merge `canary` into `main`
2 parents b8aca46 + c1f9c18 commit 2285737

File tree

131 files changed

+8395
-3561
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+8395
-3561
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
name: Build & Test all packages on ${{ matrix.os }}, Node ${{ matrix.node }}
1313
runs-on: ${{ matrix.os }}
1414
strategy:
15+
fail-fast: true
16+
max-parallel: 1
1517
matrix:
1618
os: [ubuntu-latest]
1719
# Try testing all packages with:

docs/telegram-text-messages/assets/highlight.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:root {
22
--light-hl-0: #000000;
33
--dark-hl-0: #D4D4D4;
4-
--light-code-background: #F5F5F5;
4+
--light-code-background: #FFFFFF;
55
--dark-code-background: #1E1E1E;
66
}
77

@@ -15,12 +15,12 @@
1515
--code-background: var(--dark-code-background);
1616
} }
1717

18-
body.light {
18+
:root[data-theme='light'] {
1919
--hl-0: var(--light-hl-0);
2020
--code-background: var(--light-code-background);
2121
}
2222

23-
body.dark {
23+
:root[data-theme='dark'] {
2424
--hl-0: var(--dark-hl-0);
2525
--code-background: var(--dark-code-background);
2626
}

0 commit comments

Comments
 (0)