Created
May 19, 2020 01:57
-
-
Save owenconti/ac2a96a2f83585873b76c7060bff37be to your computer and use it in GitHub Desktop.
Building CSS Grids in TailwindCSS v1.2
This file contains hidden or 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
theme('spacing') |
This file contains hidden or 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
none: 'none', | |
'1': 'repeat(1, minmax(0, 1fr))', | |
'2': 'repeat(2, minmax(0, 1fr))', | |
'3': 'repeat(3, minmax(0, 1fr))', | |
'4': 'repeat(4, minmax(0, 1fr))', | |
'5': 'repeat(5, minmax(0, 1fr))', | |
'6': 'repeat(6, minmax(0, 1fr))', | |
'7': 'repeat(7, minmax(0, 1fr))', | |
'8': 'repeat(8, minmax(0, 1fr))', | |
'9': 'repeat(9, minmax(0, 1fr))', | |
'10': 'repeat(10, minmax(0, 1fr))', | |
'11': 'repeat(11, minmax(0, 1fr))', | |
'12': 'repeat(12, minmax(0, 1fr))', |
This file contains hidden or 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
auto: 'auto', | |
'span-1': 'span 1 / span 1', | |
'span-2': 'span 2 / span 2', | |
'span-3': 'span 3 / span 3', | |
'span-4': 'span 4 / span 4', | |
'span-5': 'span 5 / span 5', | |
'span-6': 'span 6 / span 6', | |
'span-7': 'span 7 / span 7', | |
'span-8': 'span 8 / span 8', | |
'span-9': 'span 9 / span 9', | |
'span-10': 'span 10 / span 10', | |
'span-11': 'span 11 / span 11', | |
'span-12': 'span 12 / span 12', |
This file contains hidden or 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
'1': '1', | |
'2': '2', | |
'3': '3', | |
'4': '4', | |
'5': '5', | |
'6': '6', | |
'7': '7', | |
'8': '8', | |
'9': '9', | |
'10': '10', | |
'11': '11', | |
'12': '12', | |
'13': '13', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment