Improved container scaling on 4k displays

This commit is contained in:
Mia Rose Winter 2024-02-19 15:51:13 +01:00
parent c53dd72b2a
commit 9351a10939
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
2 changed files with 17 additions and 1 deletions

View file

@ -6,6 +6,22 @@ module.exports = {
safelist: ["youtube"],
theme: {
extend: {
screens: {
'3xl': "1792px",
'4xl': "2048px",
'5xl': "2304px",
'6xl': "2560px",
'8xl': "3072px"
},
container: {
'max-width': {
'3xl': "1792px",
'4xl': "2048px",
'5xl': "2304px",
'6xl': "2560px",
'8xl': "3072px"
}
}
},
fontSize: {
sm: '0.750rem',

File diff suppressed because one or more lines are too long