-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [develop] exported pagination (#153) * exported pagination * added new mobile responsive media queries based on antd * remove margin in smaller screens * [develop] update package version (#154) * exported pagination * added new mobile responsive media queries based on antd * remove margin in smaller screens * update package version
- Loading branch information
1 parent
9dfeebc
commit 12a983f
Showing
5 changed files
with
22 additions
and
4 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
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
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
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
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,4 +1,16 @@ | ||
module.exports = { | ||
content: ['./src/**/*.tsx', './src/**/*.ts'], | ||
presets: [require('fave-tailwindcss-presets')] | ||
presets: [require('fave-tailwindcss-presets')], | ||
theme: { | ||
extend: { | ||
screens: { | ||
// overrides existing media queries | ||
xs: {'min': '0px', 'max': '575px' }, | ||
sm: {'min': '576px', 'max': '767px' }, | ||
md: {'min': '768px', 'max': '991px' }, | ||
lg: {'min': '992px', 'max': '1199px' }, | ||
xl: {'min': '1200px'} | ||
} | ||
}, | ||
}, | ||
} |