From 52fa3dabe9d77a126ddc9f2f246b5d911345a022 Mon Sep 17 00:00:00 2001 From: Stephen DeLorme Date: Sat, 7 May 2022 12:00:55 -0400 Subject: [PATCH] Dashboard styling --- src/index.css | 2 +- src/routes/Home.js | 21 +++++++++++++++++---- tailwind.config.js | 3 ++- 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/index.css b/src/index.css index 7b91d67..8e131fb 100644 --- a/src/index.css +++ b/src/index.css @@ -10,7 +10,7 @@ } .default-bg { - @apply fixed h-screen w-screen; + @apply fixed h-screen w-screen z-0; opacity: 0.10; filter: blur(8px); background-image: url('../public/pebbles.jpg'); diff --git a/src/routes/Home.js b/src/routes/Home.js index a1241bf..ba1cff7 100644 --- a/src/routes/Home.js +++ b/src/routes/Home.js @@ -1,17 +1,30 @@ import React from "react"; import { Link, Outlet } from "react-router-dom"; +import Button from '../components/Button'; +import {PlusIcon} from '@heroicons/react/solid'; const Home = () => { return (
-
+

Welcome, Jerry

-
-

Balance

-

1000 sats

+
+

Your Balance

+

1000 sats

+ +
+

Members

+ +

Your tribe has no members. Add one!

+ + + + +
+
diff --git a/tailwind.config.js b/tailwind.config.js index e6cffd2..4711f2f 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -7,7 +7,8 @@ module.exports = { colors: { 'fam-orange': '#ff9500', 'fam-orange-inactive': '#A68659', - 'fam-bg-dark': '#3B474B' + 'fam-bg-dark': '#3B474B', + 'fam-teal': '#56737D' }, backgroundImage: { 'mountains': "url('../public/mountains.jpg')",