];
@endphp
- <div class="flex flex-col flex-1 -mx-28 -mt-28">
+ <div class="flex flex-col flex-1 -mx-22 -mt-22">
{{-- Main home content --}}
<div class="flex flex-1 justify-center -mb-16">{{-- negative margin so image shadow sits under shortcuts --}}
+const colors = require('tailwindcss/colors');
+
module.exports = {
mode: 'jit',
purge: [
'turquoise': '#2AB3C9',
'green': '#37BE4E',
'purple': '#7A2AA1',
+ 'grey': colors.gray, // Proper spelling ;-)
+ },
+ fontSize: {
+ '6xl': ['3.375rem', 1], // 54px, line-height: 1
+ },
+ spacing: {
+ '15': '3.75rem', // 60px
+ '22': '5.5rem', // 88px
}
},
fontFamily: {
'primary': 'GeneralSans, sans-serif',
'secondary': 'Roboto, sans-serif',
- }
+ },
},
variants: {
extend: {},