Change font to Fira Code on Github and increase font size to 16px
Github FiraCode by nguyentdat27
Details
Authornguyentdat27
LicenseNo License
Categoryuserstyles, github
Created
Updated
Size639 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name github font ligatures in code
@version 20210918.20.20
@namespace userstyles.world/user/mohamedbechirmejri
@description use fira code font ligatures in code section on github.com
@author mohamedbechirmejri
@license No License
==/UserStyle== */
@-moz-document domain("github.com") {
@import url(https://fonts.googleapis.com/css2?family=Fira+Code:wght@100;200;300;400;500;600;700&display=swap);
.react-code-text,
.react-code-lines,
pre,
code,
.blob-code,
.blob-code-marker {
font-family: "Fira Code", monospace !important;
font-size: 16px;
}
}