Skip to content
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
279b3fb
Delete summary::-webkit-details-marker from _print.css
mic-max Feb 22, 2021
c157bcf
Replace summary::-webkit-details-marker with summary::marker in _misc…
mic-max Feb 22, 2021
bc30b7b
Added changeset
mic-max Feb 22, 2021
6143b0d
feat: a better system font stack
suitupstan Jul 3, 2021
61af668
Add monospace system font stack
Xenonym Oct 2, 2021
9dcec8a
Include var and make style more consistent
kognise Oct 2, 2021
958e142
Update CONTRIBUTING.md for development branch
kognise Oct 2, 2021
845426d
Merge pull request #265 from Xenonym/enhancement/add-monospace-font-s…
kognise Oct 3, 2021
e9b6b91
Save theme in bookmarklet
kognise Oct 3, 2021
88d5a95
Add changeset
kognise Oct 3, 2021
a256203
Merge pull request #268 from kognise/bookmarklet-save-theme
kognise Oct 3, 2021
d4a5412
Add spacing around scrollbar (#277)
adamerose Jan 20, 2022
059b290
Prevent submitting the demo form (#272)
Xenonym Jan 20, 2022
af68904
Unprefix `-webkit-appearance` (#270)
Xenonym Jan 20, 2022
a38c409
Improve font stacks
kognise Jan 20, 2022
1229f3a
Merge branch 'development' into better-system-font-stack
kognise Jan 20, 2022
216d6de
Improve Product Hunt focus style
kognise Jan 20, 2022
8edc2a8
Add legacy prefixed version back
kognise Jan 20, 2022
16b8d5c
Merge branch 'mic-max/master' into development
kognise Jan 20, 2022
b51d3e2
Remove inline quote styles
kognise Jan 20, 2022
8505823
Add additional form elements to demo (#271)
Xenonym Jan 20, 2022
e81b5d1
Better documentation
kognise Jan 21, 2022
a50c8a0
Merge branch 'documentation' into development
kognise Jan 21, 2022
2d95288
Fix product hunt focus styles (again)
kognise Jan 21, 2022
4bd606f
Fix scrollbar color
kognise Jan 22, 2022
3decb54
(Jankily) clean up overflow and make code snippet link to min.css
kognise Jan 22, 2022
2e49332
Add NPM installation instructions and update goals (#221)
kognise Jan 22, 2022
0ac9bee
Add selection color variable (#262)
kognise Jan 22, 2022
99017d0
Changeset (oops)
kognise Jan 22, 2022
2ca1eee
Upgrade dependencies
kognise Jan 22, 2022
9cf9e05
Globally set box-sizing to border-box (and improve code snippet copy …
kognise Jan 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Include var and make style more consistent
  • Loading branch information
kognise authored Oct 2, 2021
commit 9dcec8a3746052cca4516baea7120ba29e446d4d
6 changes: 3 additions & 3 deletions src/parts/_code.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ time {
pre,
code,
samp,
kbd {
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
kbd,
var {
font-family: ui-monospace, 'SFMono-Regular', 'SF Mono', 'Menlo', 'Consolas', 'Liberation Mono', monospace;
}

pre > code {
Expand All @@ -24,7 +25,6 @@ pre > code {
var {
color: var(--variable);
font-style: normal;
font-family: monospace;
}

kbd {
Expand Down