From 95cd5644775a6200d284e14d38c44aff1e8774c0 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sat, 23 Apr 2022 13:32:26 +0200 Subject: [PATCH] add new screen size --- tailwind.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index 67b56b64..861c0ac4 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,6 +5,7 @@ * * Run '$ npm run css:dev' to compile changes in this file. */ +const defaultTheme = require('tailwindcss/defaultTheme') module.exports = { purge: { @@ -17,6 +18,10 @@ module.exports = { colors: { 'primary':'#90A8D8', 'secondary':'#DDBC91', + }, + screens: { + 'xs': '470px', + ...defaultTheme.screens } }, },