Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-alpha.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
titouanmathis committed Jan 21, 2020
2 parents 6e70a0d + b7730f6 commit 1899e97
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 56 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studiometa/tailwind-config",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "A custom Tailwind CSS config",
"main": "src/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tailwind config

[![NPM Version](https://img.shields.io/npm/v/@studiometa/tailwind-config.svg?style=flat-square)](https://www.npmjs.com/package/@studiometa/tailwind-config)
[![NPM Version](https://img.shields.io/npm/v/@studiometa/tailwind-config/alpha.svg?style=flat-square)](https://www.npmjs.com/package/@studiometa/tailwind-config)
[![Dependency Status](https://img.shields.io/david/studiometa/tailwind-config.svg?label=deps&style=flat-square)](https://david-dm.org/studiometa/tailwind-config)
[![devDependency Status](https://img.shields.io/david/dev/studiometa/tailwind-config.svg?label=devDeps&style=flat-square)](https://david-dm.org/studiometa/tailwind-config?type=dev)

Expand All @@ -11,7 +11,7 @@
Install the package with NPM or your package manager of choice:

```bash
npm install @studiometa/tailwind-config --save-dev
npm install @studiometa/tailwind-config@alpha --save-dev
```

## Usage
Expand Down
52 changes: 0 additions & 52 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ module.exports = {
/**
* Typography
*/
fontFamily: {},
fontSize: {},
fontWeight: {
hairline: '100',
thin: '200',
Expand All @@ -103,43 +101,22 @@ module.exports = {
extrabold: '800',
black: '900',
},
letterSpacing: {},
lineHeight: {},
listStyleType: {},
inset: {},

/**
* Size
*/
container: {},
width: theme => ({
auto: 'auto',
...theme('spacing'),
full: '100%',
screen: '100vw',
}),
maxWidth: {},
minWidth: {},
height: theme => ({
auto: 'auto',
...theme('spacing'),
full: '100%',
screen: '100vh',
}),
maxHeight: {},
minHeight: {},

/**
* Backgrounds utilities
*/
backgroundPosition: {},
backgroundSize: {},

/**
* Border utilities
*/
borderRadius: {},
borderWidth: {},

/**
* Layer
Expand All @@ -152,37 +129,9 @@ module.exports = {
limbo: '-999',
},

/**
* Other
*/
boxShadow: {},
cursor: {},
objectPosition: {},
opacity: {},
strokeWidth: {},

/**
* css grid
*/
gap: {},
rowGap: {},
columnGap: {},
gridTemplateColumns: {},
gridColumn: {},
gridColumnStart: {},
gridColumnEnd: {},
gridTemplateRows: {},
gridRow: {},
gridRowStart: {},
gridRowEnd: {},

/**
* Transforms
*/
rotate: {},
scale: {},
skew: {},
transformOrigin: {},
translate: (theme, { negative }) => ({
...theme('spacing'),
...negative(theme('spacing')),
Expand Down Expand Up @@ -216,7 +165,6 @@ module.exports = {
visibility: ['responsive'],
zIndex: ['responsive'],
},
corePlugins: {},
plugins: [
require('./plugins/debug-outline')(),
require('./plugins/grid')({
Expand Down

0 comments on commit 1899e97

Please sign in to comment.