-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* linter commas * Add fluid typography classes * Add link to google sheet plot in doc
- Loading branch information
1 parent
25dc25d
commit b5a11a4
Showing
4 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
}, | ||
"settings": { | ||
"react": { | ||
"version": '999.999.999', | ||
}, | ||
}, | ||
"version": "999.999.999" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/** | ||
* Fluid type that increase font size smoothly and linearly between a min and max value | ||
* over the viewport width range 360px (XS) to 1500px (2XL) | ||
* See concept on https://www.aleksandrhovhannisyan.com/blog/fluid-type-scale-with-css-clamp/ | ||
* | ||
* See google sheet for a plot of the font sizes over the viewport width range 360px (XS) to 1500px (2XL): | ||
* https://docs.google.com/spreadsheets/d/1AN9eV_ECXc9MzTZUc10hiLjOHeOCDTutC5tMHOCPqgo/edit?usp=sharing | ||
* | ||
* Good for use in hero banners and horizontal cards where UI looks better with a smooth transition of font size | ||
* Here we offer the sizes from fluid-type-4 to fluid-type-10. Their min and max values at the XS and 2XL breakpoints | ||
* are the same as the corresponding modular typography classes (type-4 to type-10). | ||
*/ | ||
module.exports = function () { | ||
return function ({ addComponents }) { | ||
const components = { | ||
'.fluid-type-4': { | ||
fontSize: 'clamp(3.1rem, 2.19vw + 2.31rem, 5.6rem)', | ||
}, | ||
'.fluid-type-5': { | ||
fontSize: 'clamp(3.6rem, 2.98vw + 2.53rem, 7rem)', | ||
}, | ||
'.fluid-type-6': { | ||
fontSize: 'clamp(4.2rem, 4.04vw + 2.75rem, 8.8rem)', | ||
}, | ||
'.fluid-type-7': { | ||
fontSize: 'clamp(4.8rem, 5.44vw + 2.84rem, 11rem)', | ||
}, | ||
'.fluid-type-8': { | ||
fontSize: 'clamp(5.5rem, 7.19vw + 2.91rem, 13.7rem)', | ||
}, | ||
'.fluid-type-9': { | ||
fontSize: 'clamp(6.3rem, 9.47vw + 2.89rem, 17.1rem)', | ||
}, | ||
'.fluid-type-10': { | ||
fontSize: 'clamp(7.3rem, 12.37vw + 2.85rem, 21.4rem)', | ||
}, | ||
}; | ||
|
||
addComponents(components); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters