The font size in jira is too small. Using the regular browser zoom feature doesn't work very well and makes the tickets impossible to read. This is a simple set of css rules to increase the font size for usability.
Jira - increase font size by devoidfury
Details
Authordevoidfury
LicenseNo License
Categoryjira, atlassian
Created
Updated
Size309 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 Jira - increase font size because it's too small
@namespace userstyles.world
@version 1.0.0
==/UserStyle== */
@-moz-document domain("atlassian.net") {
*:not([class^=css-]) {
font-size: 26px;
line-height: 1.2;
}
.kIAUdb {
width: 100%;
}
}