Browse Source

Add extended flex basis options

ApisNecros 1 year ago
parent
commit
325efa7ac9
1 changed files with 9 additions and 0 deletions
  1. 9 0
      tailwind.config.js

+ 9 - 0
tailwind.config.js

@@ -16,6 +16,15 @@ module.exports = {
   },
   darkMode: false, // or 'media' or 'class'
   theme: {
+    flex: {
+      '1': '1 1 0%',
+      auto: '1 1 auto',
+      initial: '0 1 auto',
+      none: 'none',
+      '1-1/4': '1 1 25%',
+      '1-1/3': '1 1 33.3333333%',
+      '1-1/2': '1 1 50%',
+    },
     extend: {},
   },
   variants: {