chore: font updates
This commit is contained in:
parent
b1a10f4008
commit
dd67b01961
4 changed files with 11 additions and 21 deletions
|
@ -33,7 +33,6 @@
|
|||
<link href="/assets/icons/apple-touch-icon.png?v={% version %}" rel="apple-touch-icon">
|
||||
{% capture css %}
|
||||
{% render "../assets/styles/prism.css" %}
|
||||
{% render "../assets/styles/ml.css" %}
|
||||
{% render "../assets/styles/tailwind.css" %}
|
||||
{% endcapture %}
|
||||
<style>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -131,7 +131,7 @@ code,
|
|||
kbd,
|
||||
samp,
|
||||
pre {
|
||||
font-family: ml, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-family: ui-monospace, Cascadia Code, Source Code Pro, Menlo, Consolas, DejaVu Sans Mono, monospace;
|
||||
/* 1 */
|
||||
font-feature-settings: normal;
|
||||
/* 2 */
|
||||
|
@ -1990,7 +1990,7 @@ li > a {
|
|||
}
|
||||
|
||||
code {
|
||||
font-family: ml, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-family: ui-monospace, Cascadia Code, Source Code Pro, Menlo, Consolas, DejaVu Sans Mono, monospace;
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(249 250 251 / var(--tw-text-opacity));
|
||||
padding: 0.25rem;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
const defaultTheme = require('tailwindcss/defaultTheme')
|
||||
|
||||
module.exports = {
|
||||
theme: {
|
||||
extend: {
|
||||
|
@ -22,7 +20,15 @@ module.exports = {
|
|||
'source-sans-pro',
|
||||
'sans-serif',
|
||||
],
|
||||
mono: ['ml', ...defaultTheme.fontFamily.mono],
|
||||
mono: [
|
||||
'ui-monospace',
|
||||
'Cascadia Code',
|
||||
'Source Code Pro',
|
||||
'Menlo',
|
||||
'Consolas',
|
||||
'DejaVu Sans Mono',
|
||||
'monospace',
|
||||
],
|
||||
},
|
||||
backgroundImage: {
|
||||
'cover-gradient':
|
||||
|
|
Reference in a new issue