From ab035d13e51a6b7ce4815668fd23b1c77eb2cee3 Mon Sep 17 00:00:00 2001 From: Ariful Alam Date: Mon, 24 Oct 2022 15:02:47 +0600 Subject: [PATCH] Change background color of the body --- src/components/GitProfile.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/GitProfile.jsx b/src/components/GitProfile.jsx index 552599f..cf5acc5 100644 --- a/src/components/GitProfile.jsx +++ b/src/components/GitProfile.jsx @@ -25,6 +25,8 @@ import PropTypes from 'prop-types'; import '../assets/index.css'; import { formatDistance } from 'date-fns'; +const bgColor = 'bg-base-300'; + const GitProfile = ({ config }) => { const [error, setError] = useState( typeof config === 'undefined' && !config ? noConfigError : null @@ -144,7 +146,7 @@ const GitProfile = ({ config }) => { ) : ( sanitizedConfig && ( -
+
@@ -199,7 +201,9 @@ const GitProfile = ({ config }) => {
-