Skip to content

Commit fd443d3

Browse files
authored
Merge branch 'main' into simplify-tests-for-variants
2 parents 9317995 + 3e971b2 commit fd443d3

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

docs/css/custom.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
/* Fira Code, including characters used by Rich output, like the "heavy right-pointing angle bracket ornament", not included in Google Fonts */
22
@import url(https://cdn.jsdelivr.net/npm/[email protected]/distr/fira_code.css);
3+
/* Noto Color Emoji for emoji support with the same font everywhere */
4+
@import url(https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap);
35

46
/* Override default code font in Material for MkDocs to Fira Code */
57
:root {
6-
--md-code-font: "Fira Code", monospace;
8+
--md-code-font: "Fira Code", monospace, "Noto Color Emoji";
9+
}
10+
11+
/* Override default regular font in Material for MkDocs to include Noto Color Emoji */
12+
:root {
13+
--md-text-font: "Roboto", "Noto Color Emoji";
714
}
815

916
.termynal-comment {

docs/release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Docs
66

7+
* 💅 Update CSS to explicitly use emoji font. PR [#1658](https://github.com/fastapi/sqlmodel/pull/1658) by [@tiangolo](https://github.com/tiangolo).
78
* 📝 Update link to JetBrains Python survey in `features.md`. PR [#1627](https://github.com/fastapi/sqlmodel/pull/1627) by [@sparkiegeek](https://github.com/sparkiegeek).
89
* 📝 Fix broken links in docs. PR [#1601](https://github.com/fastapi/sqlmodel/pull/1601) by [@YuriiMotov](https://github.com/YuriiMotov).
910

0 commit comments

Comments
 (0)