Remove comments
This commit is contained in:
parent
859064ca32
commit
424981ed5c
|
@ -1,48 +1,3 @@
|
||||||
/*
|
|
||||||
|
|
||||||
Tailwind - The Utility-First CSS Framework
|
|
||||||
|
|
||||||
A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink),
|
|
||||||
David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger).
|
|
||||||
|
|
||||||
Welcome to the Tailwind config file. This is where you can customize
|
|
||||||
Tailwind specifically for your project. Don't be intimidated by the
|
|
||||||
length of this file. It's really just a big JavaScript object and
|
|
||||||
we've done our very best to explain each section.
|
|
||||||
|
|
||||||
View the full documentation at https://tailwindcss.com.
|
|
||||||
|
|
||||||
|
|
||||||
|-------------------------------------------------------------------------------
|
|
||||||
| The default config
|
|
||||||
|-------------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This variable contains the default Tailwind config. You don't have
|
|
||||||
| to use it, but it can sometimes be helpful to have available. For
|
|
||||||
| example, you may choose to merge your custom configuration
|
|
||||||
| values with some of the Tailwind defaults.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
// var defaultConfig = require('tailwindcss').defaultConfig()
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-------------------------------------------------------------------------------
|
|
||||||
| Colors https://tailwindcss.com/docs/colors
|
|
||||||
|-------------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here you can specify the colors used in your project. To get you started,
|
|
||||||
| we've provided a generous palette of great looking colors that are perfect
|
|
||||||
| for prototyping, but don't hesitate to change them for your project. You
|
|
||||||
| own these colors, nothing will break if you change everything about them.
|
|
||||||
|
|
|
||||||
| We've used literal color names ("red", "blue", etc.) for the default
|
|
||||||
| palette, but if you'd rather use functional names like "primary" and
|
|
||||||
| "secondary", or even a numeric scale like "100" and "200", go for it.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
var colors = {
|
var colors = {
|
||||||
'transparent': 'transparent',
|
'transparent': 'transparent',
|
||||||
|
|
||||||
|
@ -131,41 +86,8 @@ var colors = {
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Colors https://tailwindcss.com/docs/colors
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The color palette defined above is also assigned to the "colors" key of
|
|
||||||
| your Tailwind config. This makes it easy to access them in your CSS
|
|
||||||
| using Tailwind's config helper. For example:
|
|
||||||
|
|
|
||||||
| .error { color: config('colors.red') }
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
colors: colors,
|
colors: colors,
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Screens https://tailwindcss.com/docs/responsive-design
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Screens in Tailwind are translated to CSS media queries. They define the
|
|
||||||
| responsive breakpoints for your project. By default Tailwind takes a
|
|
||||||
| "mobile first" approach, where each screen size represents a minimum
|
|
||||||
| viewport width. Feel free to have as few or as many screens as you
|
|
||||||
| want, naming them in whatever way you'd prefer for your project.
|
|
||||||
|
|
|
||||||
| Tailwind also allows for more complex screen definitions, which can be
|
|
||||||
| useful in certain situations. Be sure to see the full responsive
|
|
||||||
| documentation for a complete list of options.
|
|
||||||
|
|
|
||||||
| Class name: .{screen}:{utility}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
screens: {
|
screens: {
|
||||||
'sm': '576px',
|
'sm': '576px',
|
||||||
'md': '768px',
|
'md': '768px',
|
||||||
|
@ -173,25 +95,6 @@ module.exports = {
|
||||||
'xl': '1200px',
|
'xl': '1200px',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Fonts https://tailwindcss.com/docs/fonts
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your project's font stack, or font families.
|
|
||||||
| Keep in mind that Tailwind doesn't actually load any fonts for you.
|
|
||||||
| If you're using custom fonts you'll need to import them prior to
|
|
||||||
| defining them here.
|
|
||||||
|
|
|
||||||
| By default we provide a native font stack that works remarkably well on
|
|
||||||
| any device or OS you're using, since it just uses the default fonts
|
|
||||||
| provided by the platform.
|
|
||||||
|
|
|
||||||
| Class name: .font-{name}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
fonts: {
|
fonts: {
|
||||||
'sans': [
|
'sans': [
|
||||||
'-apple-system',
|
'-apple-system',
|
||||||
|
@ -228,26 +131,6 @@ module.exports = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Text sizes https://tailwindcss.com/docs/text-sizing
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your text sizes. Name these in whatever way
|
|
||||||
| makes the most sense to you. We use size names by default, but
|
|
||||||
| you're welcome to use a numeric scale or even something else
|
|
||||||
| entirely.
|
|
||||||
|
|
|
||||||
| By default Tailwind uses the "rem" unit type for most measurements.
|
|
||||||
| This allows you to set a root font size which all other sizes are
|
|
||||||
| then based on. That said, you are free to use whatever units you
|
|
||||||
| prefer, be it rems, ems, pixels or other.
|
|
||||||
|
|
|
||||||
| Class name: .text-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
textSizes: {
|
textSizes: {
|
||||||
'xs': '.75rem', // 12px
|
'xs': '.75rem', // 12px
|
||||||
'sm': '.875rem', // 14px
|
'sm': '.875rem', // 14px
|
||||||
|
@ -260,21 +143,6 @@ module.exports = {
|
||||||
'5xl': '3rem', // 48px
|
'5xl': '3rem', // 48px
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Font weights https://tailwindcss.com/docs/font-weight
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your font weights. We've provided a list of
|
|
||||||
| common font weight names with their respective numeric scale values
|
|
||||||
| to get you started. It's unlikely that your project will require
|
|
||||||
| all of these, so we recommend removing those you don't need.
|
|
||||||
|
|
|
||||||
| Class name: .font-{weight}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
fontWeights: {
|
fontWeights: {
|
||||||
'hairline': 100,
|
'hairline': 100,
|
||||||
'thin': 200,
|
'thin': 200,
|
||||||
|
@ -287,19 +155,6 @@ module.exports = {
|
||||||
'black': 900,
|
'black': 900,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Leading (line height) https://tailwindcss.com/docs/line-height
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your line height values, or as we call
|
|
||||||
| them in Tailwind, leadings.
|
|
||||||
|
|
|
||||||
| Class name: .leading-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
leading: {
|
leading: {
|
||||||
'none': 1,
|
'none': 1,
|
||||||
'tight': 1.25,
|
'tight': 1.25,
|
||||||
|
@ -307,71 +162,16 @@ module.exports = {
|
||||||
'loose': 2,
|
'loose': 2,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Tracking (letter spacing) https://tailwindcss.com/docs/letter-spacing
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your letter spacing values, or as we call
|
|
||||||
| them in Tailwind, tracking.
|
|
||||||
|
|
|
||||||
| Class name: .tracking-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
tracking: {
|
tracking: {
|
||||||
'tight': '-0.05em',
|
'tight': '-0.05em',
|
||||||
'normal': '0',
|
'normal': '0',
|
||||||
'wide': '0.05em',
|
'wide': '0.05em',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Text colors https://tailwindcss.com/docs/text-color
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your text colors. By default these use the
|
|
||||||
| color palette we defined above, however you're welcome to set these
|
|
||||||
| independently if that makes sense for your project.
|
|
||||||
|
|
|
||||||
| Class name: .text-{color}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
textColors: colors,
|
textColors: colors,
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Background colors https://tailwindcss.com/docs/background-color
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your background colors. By default these use
|
|
||||||
| the color palette we defined above, however you're welcome to set
|
|
||||||
| these independently if that makes sense for your project.
|
|
||||||
|
|
|
||||||
| Class name: .bg-{color}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
backgroundColors: colors,
|
backgroundColors: colors,
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Border widths https://tailwindcss.com/docs/border-width
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your border widths. Take note that border
|
|
||||||
| widths require a special "default" value set as well. This is the
|
|
||||||
| width that will be used when you do not specify a border width.
|
|
||||||
|
|
|
||||||
| Class name: .border{-side?}{-width?}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
borderWidths: {
|
borderWidths: {
|
||||||
default: '1px',
|
default: '1px',
|
||||||
'0': '0',
|
'0': '0',
|
||||||
|
@ -380,40 +180,8 @@ module.exports = {
|
||||||
'8': '8px',
|
'8': '8px',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Border colors https://tailwindcss.com/docs/border-color
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your border colors. By default these use the
|
|
||||||
| color palette we defined above, however you're welcome to set these
|
|
||||||
| independently if that makes sense for your project.
|
|
||||||
|
|
|
||||||
| Take note that border colors require a special "default" value set
|
|
||||||
| as well. This is the color that will be used when you do not
|
|
||||||
| specify a border color.
|
|
||||||
|
|
|
||||||
| Class name: .border-{color}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
borderColors: Object.assign({ default: colors['grey-light'] }, colors),
|
borderColors: Object.assign({ default: colors['grey-light'] }, colors),
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Border radius https://tailwindcss.com/docs/border-radius
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your border radius values. If a `default` radius
|
|
||||||
| is provided, it will be made available as the non-suffixed `.rounded`
|
|
||||||
| utility.
|
|
||||||
|
|
|
||||||
| Class name: .rounded{-radius?}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
borderRadius: {
|
borderRadius: {
|
||||||
default: '.25rem',
|
default: '.25rem',
|
||||||
'sm': '.125rem',
|
'sm': '.125rem',
|
||||||
|
@ -422,27 +190,6 @@ module.exports = {
|
||||||
'none': '0',
|
'none': '0',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Width https://tailwindcss.com/docs/width
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your width utility sizes. These can be
|
|
||||||
| percentage based, pixels, rems, or any other units. By default
|
|
||||||
| we provide a sensible rem based numeric scale, a percentage
|
|
||||||
| based fraction scale, plus some other common use-cases. You
|
|
||||||
| can, of course, modify these values as needed.
|
|
||||||
|
|
|
||||||
|
|
|
||||||
| It's also worth mentioning that Tailwind automatically escapes
|
|
||||||
| invalid CSS class name characters, which allows you to have
|
|
||||||
| awesome classes like .w-2/3.
|
|
||||||
|
|
|
||||||
| Class name: .w-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
width: {
|
width: {
|
||||||
'auto': 'auto',
|
'auto': 'auto',
|
||||||
'px': '1px',
|
'px': '1px',
|
||||||
|
@ -474,22 +221,6 @@ module.exports = {
|
||||||
'screen': '100vw'
|
'screen': '100vw'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Height https://tailwindcss.com/docs/height
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your height utility sizes. These can be
|
|
||||||
| percentage based, pixels, rems, or any other units. By default
|
|
||||||
| we provide a sensible rem based numeric scale plus some other
|
|
||||||
| common use-cases. You can, of course, modify these values as
|
|
||||||
| needed.
|
|
||||||
|
|
|
||||||
| Class name: .h-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
height: {
|
height: {
|
||||||
'auto': 'auto',
|
'auto': 'auto',
|
||||||
'px': '1px',
|
'px': '1px',
|
||||||
|
@ -510,63 +241,17 @@ module.exports = {
|
||||||
'screen': '100vh'
|
'screen': '100vh'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Minimum width https://tailwindcss.com/docs/min-width
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your minimum width utility sizes. These can
|
|
||||||
| be percentage based, pixels, rems, or any other units. We provide a
|
|
||||||
| couple common use-cases by default. You can, of course, modify
|
|
||||||
| these values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .min-w-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
minWidth: {
|
minWidth: {
|
||||||
'0': '0',
|
'0': '0',
|
||||||
'full': '100%',
|
'full': '100%',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Minimum height https://tailwindcss.com/docs/min-height
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your minimum height utility sizes. These can
|
|
||||||
| be percentage based, pixels, rems, or any other units. We provide a
|
|
||||||
| few common use-cases by default. You can, of course, modify these
|
|
||||||
| values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .min-h-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
minHeight: {
|
minHeight: {
|
||||||
'0': '0',
|
'0': '0',
|
||||||
'full': '100%',
|
'full': '100%',
|
||||||
'screen': '100vh'
|
'screen': '100vh'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Maximum width https://tailwindcss.com/docs/max-width
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your maximum width utility sizes. These can
|
|
||||||
| be percentage based, pixels, rems, or any other units. By default
|
|
||||||
| we provide a sensible rem based scale and a "full width" size,
|
|
||||||
| which is basically a reset utility. You can, of course,
|
|
||||||
| modify these values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .max-w-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
maxWidth: {
|
maxWidth: {
|
||||||
'xs': '20rem',
|
'xs': '20rem',
|
||||||
'sm': '30rem',
|
'sm': '30rem',
|
||||||
|
@ -580,42 +265,11 @@ module.exports = {
|
||||||
'full': '100%',
|
'full': '100%',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Maximum height https://tailwindcss.com/docs/max-height
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your maximum height utility sizes. These can
|
|
||||||
| be percentage based, pixels, rems, or any other units. We provide a
|
|
||||||
| couple common use-cases by default. You can, of course, modify
|
|
||||||
| these values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .max-h-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
maxHeight: {
|
maxHeight: {
|
||||||
'full': '100%',
|
'full': '100%',
|
||||||
'screen': '100vh',
|
'screen': '100vh',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Padding https://tailwindcss.com/docs/padding
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your padding utility sizes. These can be
|
|
||||||
| percentage based, pixels, rems, or any other units. By default we
|
|
||||||
| provide a sensible rem based numeric scale plus a couple other
|
|
||||||
| common use-cases like "1px". You can, of course, modify these
|
|
||||||
| values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .p{side?}-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
padding: {
|
padding: {
|
||||||
'px': '1px',
|
'px': '1px',
|
||||||
'0': '0',
|
'0': '0',
|
||||||
|
@ -628,22 +282,6 @@ module.exports = {
|
||||||
'16': '4rem',
|
'16': '4rem',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Margin https://tailwindcss.com/docs/margin
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your margin utility sizes. These can be
|
|
||||||
| percentage based, pixels, rems, or any other units. By default we
|
|
||||||
| provide a sensible rem based numeric scale plus a couple other
|
|
||||||
| common use-cases like "1px". You can, of course, modify these
|
|
||||||
| values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .m{side?}-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
margin: {
|
margin: {
|
||||||
'px': '1px',
|
'px': '1px',
|
||||||
'0': '0',
|
'0': '0',
|
||||||
|
@ -656,22 +294,6 @@ module.exports = {
|
||||||
'16': '4rem',
|
'16': '4rem',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Negative margin https://tailwindcss.com/docs/negative-margin
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your negative margin utility sizes. These can
|
|
||||||
| be percentage based, pixels, rems, or any other units. By default we
|
|
||||||
| provide matching values to the padding scale since these utilities
|
|
||||||
| generally get used together. You can, of course, modify these
|
|
||||||
| values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .-m{side?}-{size}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
negativeMargin: {
|
negativeMargin: {
|
||||||
'px': '1px',
|
'px': '1px',
|
||||||
'0': '0',
|
'0': '0',
|
||||||
|
@ -684,23 +306,6 @@ module.exports = {
|
||||||
'16': '4rem',
|
'16': '4rem',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Shadows https://tailwindcss.com/docs/shadows
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your shadow utilities. As you can see from
|
|
||||||
| the defaults we provide, it's possible to apply multiple shadows
|
|
||||||
| per utility using comma separation.
|
|
||||||
|
|
|
||||||
| If a `default` shadow is provided, it will be made available as the non-
|
|
||||||
| suffixed `.shadow` utility.
|
|
||||||
|
|
|
||||||
| Class name: .shadow-{size?}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
shadows: {
|
shadows: {
|
||||||
default: '0 2px 4px 0 rgba(0,0,0,0.10)',
|
default: '0 2px 4px 0 rgba(0,0,0,0.10)',
|
||||||
'md': '0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)',
|
'md': '0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)',
|
||||||
|
@ -709,20 +314,6 @@ module.exports = {
|
||||||
'none': 'none',
|
'none': 'none',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Z-index https://tailwindcss.com/docs/z-index
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your z-index utility values. By default we
|
|
||||||
| provide a sensible numeric scale. You can, of course, modify these
|
|
||||||
| values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .z-{index}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
zIndex: {
|
zIndex: {
|
||||||
'auto': 'auto',
|
'auto': 'auto',
|
||||||
'0': 0,
|
'0': 0,
|
||||||
|
@ -733,20 +324,6 @@ module.exports = {
|
||||||
'50': 50,
|
'50': 50,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Opacity https://tailwindcss.com/docs/opacity
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you define your opacity utility values. By default we
|
|
||||||
| provide a sensible numeric scale. You can, of course, modify these
|
|
||||||
| values as needed.
|
|
||||||
|
|
|
||||||
| Class name: .opacity-{name}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
opacity: {
|
opacity: {
|
||||||
'0': '0',
|
'0': '0',
|
||||||
'25': '.25',
|
'25': '.25',
|
||||||
|
@ -755,19 +332,6 @@ module.exports = {
|
||||||
'100': '1',
|
'100': '1',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
| Packages
|
|
||||||
|-----------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here is where you can define the configuration for any Tailwind packages
|
|
||||||
| you're using. These can be utility packs, component bundles, or even
|
|
||||||
| complete themes. You'll want to reference each package's
|
|
||||||
| documentation for a list of settings available for it.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
packages: {
|
packages: {
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue