-
Notifications
You must be signed in to change notification settings - Fork 759
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package pnpm-lock postcss configs fetch mock app Field Root SideBar B…
…ackend BackendForm BackendList BackendErrorFallback ErrorFallback ErrorFallbackLayout BackendBeacon Toggle Basic constants errors utils tailwind
- Loading branch information
Showing
26 changed files
with
449 additions
and
148 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
'use strict'; | ||
|
||
// '--breakpoint-not-small': 'screen and (min-width: 30em)', | ||
// '--breakpoint-medium': 'screen and (min-width: 30em) and (max-width: 60em)', | ||
// '--breakpoint-large': 'screen and (min-width: 60em)', | ||
|
||
module.exports = { | ||
plugins: [ | ||
require('postcss-import')(), | ||
require('postcss-simple-vars')(), | ||
require('autoprefixer')(), | ||
], | ||
export default { | ||
plugins: { | ||
'postcss-import': {}, | ||
'postcss-simple-vars': {}, | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; |
Oops, something went wrong.