- integrating sign in with google

- set up dark mode context and other services
This commit is contained in:
Amruth Pillai
2020-07-03 18:59:25 +05:30
parent 336fd22150
commit 3a1d42025f
17 changed files with 405 additions and 115 deletions

View File

@ -1,21 +1,12 @@
:root {
--color-primary: #444;
--color-primary-dark: #333;
--color-inverse: #fff;
--color-inverse-dark: #f5f5f5;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "~react-loader-spinner/dist/loader/css/react-spinner-loader.css";
@import "~react-toastify/dist/ReactToastify.css";
@import "./toastify.css";
html,
body {
font-size: 12px;
@apply text-primary;
font-family: "Montserrat", sans-serif;
@apply text-primary bg-inverse;
}
p {

5
src/styles/tailwind.css Normal file
View File

@ -0,0 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

12
src/styles/toastify.css Normal file
View File

@ -0,0 +1,12 @@
.Toastify__toast {
@apply px-8 py-6 shadow-lg rounded;
}
.Toastify__toast--default {
@apply bg-primary text-inverse;
}
.Toastify__toast-body {
font-family: "Montserrat", sans-serif;
@apply font-medium;
}