Add custom max width, add custom class to apply custom max width not working #10896
-
|
First of all, Im not entirely sure if I set this up correctly. In my Then I have in a SCSS file: SCSS compiles fine but doesn't take effect when I hit max width. Is what Im trying to do possible? |
Beta Was this translation helpful? Give feedback.
Answered by
wongjn
Mar 29, 2023
Replies: 1 comment
-
|
It seems like you're after module.exports = {
…
theme: {
extend: {
- width: {
+ screens: {
'full-hd': '1344px',
},
},
},
…
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
seandelaney
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems like you're after
screens, notwidth:module.exports = { … theme: { extend: { - width: { + screens: { 'full-hd': '1344px', }, }, }, … };