Skip to content

Commit

Permalink
Fix xs breakpoing in plugin.cjs file (#1809)
Browse files Browse the repository at this point in the history
  • Loading branch information
juujisai authored Jul 19, 2023
1 parent 0e6d382 commit eb1b842
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/js/plugin.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY
*/

const plugin = require("tailwindcss/plugin");
const defaultTheme = require("tailwindcss/defaultTheme");

module.exports = plugin(() => {}, {
theme: {
screens: {
xs: "320px",
...defaultTheme.screens,
},
extend: {
screens: {
xs: "320px",
},
fontFamily: {
sans: ["Roboto", "sans-serif"],
body: ["Roboto", "sans-serif"],
Expand Down

0 comments on commit eb1b842

Please sign in to comment.