Decreases the font width across your Fibery instance. This allows you to see more text at a time, which is especially useful in card-based views (e.g. "Board").
Fibery condensed font by kailinj
Details
Authorkailinj
LicenseNo License
Categoryfibery
Created
Updated
Size841 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Currently isn't working for italics – let me know if you have ideas for how to fix this.
Source code
/* ==UserStyle==
@name Fibery condensed font
@namespace USO Archive
@author Kailin Johnson
@description Decreases the font width across your Fibery instance. This allows you to see more text at a time, which is especially useful in card-based views (e.g. "Board").
@version 20240508.15.46
@license NONE
@preprocessor uso
==/UserStyle== */
@-moz-document domain("fibery.io") {
html, body, span, div, td, th, input, textarea, select, button, h1, h2, h3, h4, h5, h6, p, ant-input {
font-optical-sizing: auto;
font-style: normal;
font-stretch: extra-condensed;
}
em {
font-stretch: extra-condensed;
font-variation-settings:
'wght' 300,
'wdth' 100,
'slnt' 8.00;
}
html, body, li, p, li p, .ProseMirror li p {
letter-spacing: .3px;
}
}