Skip to content

Commit

Permalink
Merge pull request #70 from fpauser/update-tailwindcss-to-0.7.3
Browse files Browse the repository at this point in the history
Update tailwindcss to 0.7.3.

See [Tailwind's 0.7 release notes](https://github.com/tailwindcss/tailwindcss/releases/tag/v0.7.0) for all new features & changes from 0.6.x.
  • Loading branch information
samselikoff authored Jan 15, 2019
2 parents 7f0dd60 + d23e825 commit a5f208f
Show file tree
Hide file tree
Showing 59 changed files with 1,954 additions and 2,321 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ DEBUG
/bower.json.ember-try
/package.json.ember-try
/package-lock.json

# other
jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import colors from './colors';
| these independently if that makes sense for your project.
|
| Class name: .bg-{color}
| CSS property: background-color
|
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
| that are specific to your project here as well.
|
| Class name: .bg-{size}
| CSS property: background-size
|
*/

export default {
auto: 'auto',
cover: 'cover',
contain: 'contain'
'auto': 'auto',
'cover': 'cover',
'contain': 'contain',
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import colors from './colors';
| specify a border color.
|
| Class name: .border-{color}
| CSS property: border-color
|
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
| a good idea to put it first so other values are able to override it.
|
| Class name: .rounded{-side?}{-size?}
| CSS property: border-radius
|
*/

export default {
none: '0',
sm: '.125rem',
'none': '0',
'sm': '.125rem',
default: '.25rem',
lg: '.5rem',
full: '9999px'
'lg': '.5rem',
'full': '9999px',
};
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
| width that will be used when you do not specify a border width.
|
| Class name: .border{-side?}{-width?}
| CSS property: border-width
|
*/

Expand All @@ -16,5 +17,5 @@ export default {
'0': '0',
'2': '2px',
'4': '4px',
'8': '8px'
'8': '8px',
};
Original file line number Diff line number Diff line change
Expand Up @@ -15,87 +15,87 @@
*/

export default {
transparent: 'transparent',
'transparent': 'transparent',

black: '#22292f',
'black': '#22292f',
'grey-darkest': '#3d4852',
'grey-darker': '#606f7b',
'grey-dark': '#8795a1',
grey: '#b8c2cc',
'grey': '#b8c2cc',
'grey-light': '#dae1e7',
'grey-lighter': '#f1f5f8',
'grey-lightest': '#f8fafc',
white: '#ffffff',
'white': '#ffffff',

'red-darkest': '#3b0d0c',
'red-darker': '#621b18',
'red-dark': '#cc1f1a',
red: '#e3342f',
'red': '#e3342f',
'red-light': '#ef5753',
'red-lighter': '#f9acaa',
'red-lightest': '#fcebea',

'orange-darkest': '#462a16',
'orange-darker': '#613b1f',
'orange-dark': '#de751f',
orange: '#f6993f',
'orange': '#f6993f',
'orange-light': '#faad63',
'orange-lighter': '#fcd9b6',
'orange-lightest': '#fff5eb',

'yellow-darkest': '#453411',
'yellow-darker': '#684f1d',
'yellow-dark': '#f2d024',
yellow: '#ffed4a',
'yellow': '#ffed4a',
'yellow-light': '#fff382',
'yellow-lighter': '#fff9c2',
'yellow-lightest': '#fcfbeb',

'green-darkest': '#0f2f21',
'green-darker': '#1a4731',
'green-dark': '#1f9d55',
green: '#38c172',
'green': '#38c172',
'green-light': '#51d88a',
'green-lighter': '#a2f5bf',
'green-lightest': '#e3fcec',

'teal-darkest': '#0d3331',
'teal-darker': '#20504f',
'teal-dark': '#38a89d',
teal: '#4dc0b5',
'teal': '#4dc0b5',
'teal-light': '#64d5ca',
'teal-lighter': '#a0f0ed',
'teal-lightest': '#e8fffe',

'blue-darkest': '#12283a',
'blue-darker': '#1c3d5a',
'blue-dark': '#2779bd',
blue: '#3490dc',
'blue': '#3490dc',
'blue-light': '#6cb2eb',
'blue-lighter': '#bcdefa',
'blue-lightest': '#eff8ff',

'indigo-darkest': '#191e38',
'indigo-darker': '#2f365f',
'indigo-dark': '#5661b3',
indigo: '#6574cd',
'indigo': '#6574cd',
'indigo-light': '#7886d7',
'indigo-lighter': '#b2b7ff',
'indigo-lightest': '#e6e8ff',

'purple-darkest': '#21183c',
'purple-darker': '#382b5f',
'purple-dark': '#794acf',
purple: '#9561e2',
'purple': '#9561e2',
'purple-light': '#a779e9',
'purple-lighter': '#d6bbfc',
'purple-lightest': '#f3ebff',

'pink-darkest': '#451225',
'pink-darker': '#6f213f',
'pink-dark': '#eb5286',
pink: '#f66d9b',
'pink': '#f66d9b',
'pink-light': '#fa7ea8',
'pink-lighter': '#ffbbca',
'pink-lightest': '#ffebef'
'pink-lightest': '#ffebef',
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@
| all of these, so we recommend removing those you don't need.
|
| Class name: .font-{weight}
| CSS property: font-weight
|
*/

export default {
hairline: 100,
thin: 200,
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
extrabold: 800,
black: 900
'hairline': 100,
'thin': 200,
'light': 300,
'normal': 400,
'medium': 500,
'semibold': 600,
'bold': 700,
'extrabold': 800,
'black': 900,
};
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
| provided by the platform.
|
| Class name: .font-{name}
| CSS property: font-family
|
*/

export default {
sans: [
export default {
'sans': [
'system-ui',
'BlinkMacSystemFont',
'-apple-system',
Expand All @@ -29,9 +30,9 @@ export default {
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
'sans-serif'
'sans-serif',
],
serif: [
'serif': [
'Constantia',
'Lucida Bright',
'Lucidabright',
Expand All @@ -41,14 +42,14 @@ export default {
'Bitstream Vera Serif',
'Liberation Serif',
'Georgia',
'serif'
'serif',
],
mono: [
'mono': [
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace'
]
'monospace',
],
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@
| needed.
|
| Class name: .h-{size}
| CSS property: height
|
*/

export default {
auto: 'auto',
px: '1px',
'auto': 'auto',
'px': '1px',
'1': '0.25rem',
'2': '0.5rem',
'3': '0.75rem',
'4': '1rem',
'5': '1.25rem',
'6': '1.5rem',
'8': '2rem',
'10': '2.5rem',
Expand All @@ -29,6 +31,6 @@ export default {
'32': '8rem',
'48': '12rem',
'64': '16rem',
full: '100%',
screen: '100vh'
'full': '100%',
'screen': '100vh',
};
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
| them in Tailwind, tracking.
|
| Class name: .tracking-{size}
| CSS property: letter-spacing
|
*/

export default {
tight: '-0.05em',
normal: '0',
wide: '0.05em'
'tight': '-0.05em',
'normal': '0',
'wide': '0.05em',
};
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
| them in Tailwind, leadings.
|
| Class name: .leading-{size}
| CSS property: line-height
|
*/

export default {
none: 1,
tight: 1.25,
normal: 1.5,
loose: 2
'none': 1,
'tight': 1.25,
'normal': 1.5,
'loose': 2,
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
| values as needed.
|
| Class name: .m{side?}-{size}
| CSS property: margin
|
*/

export default {
auto: 'auto',
px: '1px',
export default {
'auto': 'auto',
'px': '1px',
'0': '0',
'1': '0.25rem',
'2': '0.5rem',
Expand All @@ -29,5 +30,5 @@ export default {
'16': '4rem',
'20': '5rem',
'24': '6rem',
'32': '8rem'
'32': '8rem',
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
| these values as needed.
|
| Class name: .max-h-{size}
| CSS property: max-height
|
*/

export default {
full: '100%',
screen: '100vh'
'full': '100%',
'screen': '100vh',
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@
| modify these values as needed.
|
| Class name: .max-w-{size}
| CSS property: max-width
|
*/

export default {
xs: '20rem',
sm: '30rem',
md: '40rem',
lg: '50rem',
xl: '60rem',
export default {
'xs': '20rem',
'sm': '30rem',
'md': '40rem',
'lg': '50rem',
'xl': '60rem',
'2xl': '70rem',
'3xl': '80rem',
'4xl': '90rem',
'5xl': '100rem',
full: '100%'
'full': '100%',
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
| values as needed.
|
| Class name: .min-h-{size}
| CSS property: min-height
|
*/

export default {
'0': '0',
full: '100%',
screen: '100vh'
'full': '100%',
'screen': '100vh',
};
Loading

0 comments on commit a5f208f

Please sign in to comment.