Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 375 Bytes

font-size-is-readable.md

File metadata and controls

31 lines (22 loc) · 375 Bytes

Pattern: Unreadable font size

Issue: -

Description

Disallows font sizes less than 15px (or 11.25pt).

Examples

The following pattern are considered violations:

.foo {
  font-size: 10px;
}

The following patterns are not considered violations:

.foo {
  font-size: 15px;
}
.foo {
  font-size: 1em;
}