diff --git a/components/HygieneKitsCard.js b/components/HygieneKitsCard.js index 77dae0b3..cda59d37 100644 --- a/components/HygieneKitsCard.js +++ b/components/HygieneKitsCard.js @@ -25,9 +25,10 @@ function HygieneKitsCard() { {'96 Hygiene Kits for $153'}

-
-

{'Ship the kits to:'}

-

{'1543 E Palmdale Blvd, Ste E, Palmdale, CA 93550'}

+

+

{'Ship the kits to:'}

+

{'1543 E Palmdale Blvd, Ste E, Palmdale, CA 93550'}

+

); diff --git a/components/LaptopForFamiliesCard.js b/components/LaptopForFamiliesCard.js index 8ec3f0e1..2dea31c7 100644 --- a/components/LaptopForFamiliesCard.js +++ b/components/LaptopForFamiliesCard.js @@ -13,8 +13,7 @@ function LaptopForFamiliesCard() { "Mail us your used or new laptop. We'll set up the donated laptops in our public computer room for the families to use for free. Some of the donated laptops will go to the families who don't have home computers, or who don't have enough computers for all their children to use." }

-

-
+

{'Ship the laptops to:'}

{'1543 E Palmdale Blvd, Ste E, Palmdale, CA 93550'}

diff --git a/pages/_app.js b/pages/_app.js index 054e5a64..01a52a56 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,4 +1,5 @@ -import 'tailwindcss/tailwind.css'; +// import 'tailwindcss/tailwind.css'; +import '../styles/global.css'; import PropTypes from 'prop-types'; import React from 'react'; diff --git a/styles/global.css b/styles/global.css new file mode 100644 index 00000000..0265f77c --- /dev/null +++ b/styles/global.css @@ -0,0 +1,14 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer components { + .btn { + @apply tracking-wider shadow-2xl transform transition hover:-translate-y-0.5; + } + + .shaded-text{ + @apply bg-black bg-opacity-10 py-2 rounded-lg; + } + +} \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index b2e1d515..63fa6e54 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,6 +4,7 @@ module.exports = { content: [ './pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', + './styles/**/*.{scss,css}', ], options: { safelist: [/data-theme$/],