Merge branch 'feat-no-privateKey' into feat/clients-without-privatekey

This commit is contained in:
Philip H 2024-03-02 14:12:38 +01:00 committed by GitHub
commit ce1af6d691
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 620 additions and 211 deletions

View file

@ -5,6 +5,17 @@
module.exports = {
darkMode: 'media',
content: ['./www/**/*.{html,js}'],
theme: {
screens: {
xxs: '450px',
xs: '576px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
},
plugins: [
function addDisabledClass({ addUtilities }) {
const newUtilities = {
@ -12,8 +23,8 @@ module.exports = {
opacity: '0.25',
cursor: 'default',
},
};
},
addUtilities(newUtilities);
},
],
};
};