added call icons

Signed-off-by: heyhiru <hirentimbadiya74@gmail.com>
Este commit está contenido en:
heyhiru
2023-11-14 18:09:07 +05:30
padre 71374e16e0
commit a733da9c1e
Se han modificado 4 ficheros con 1447 adiciones y 42 borrados

Ver fichero

@@ -12,6 +12,35 @@ module.exports = {
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontFamily: {
'poppins': ['Poppins', 'sans-serif'],
'josefin': ['Josefin Sans', 'sans-serif']
},
keyframes: {
pulse: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.6' },
}
},
animation: {
'pulse': 'pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
screens: {
mxxl: { 'max': '1535px' },
// => @media (max-width: 1535px) { ... }
mxl: { 'max': '1279px' },
// => @media (max-width: 1279px) { ... }
mlg: { 'max': '1023px' },
// => @media (max-width: 1023px) { ... }
mmd: { 'max': '767px' },
// => @media (max-width: 767px) { ... }
msm: { 'max': '639px' },
// => @media (max-width: 639px) { ... }
mss: { 'max': '550px' },
// => @media (max-width: 550px) { ... }
mxs: { 'max': "480px" }
// => @media (max-width: 480px) { ... }
},
},
},
plugins: [],