summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Sapka <michal@sapka.me>2022-09-06 23:44:48 +0200
committerMichal Sapka <michal@sapka.me>2022-09-06 23:44:48 +0200
commit5bff8f1e81d441b04882d11fbe3edbee6071fa3c (patch)
treecec389c497cef2ae1c1b037a129bb90bfb107e25
parent4d51ae1e73683f68a8268a6e2956bbe139879c38 (diff)
feat: border around photo
-rw-r--r--pages/index.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx
index 47a944f..a654d93 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -11,6 +11,7 @@ import {
Image as CImage,
Stack,
Button,
+ useColorModeValue
} from '@chakra-ui/react'
import { AiFillGithub,AiFillMediumCircle} from "react-icons/ai";
import Publications from "../data/publications"
@@ -49,6 +50,9 @@ const Home: NextPage = () => {
src="images/michal.png"
width="80px"
borderRadius="full"
+ borderWidth = "3px"
+ borderStyle = "solid"
+ borderColor = {useColorModeValue("#FFFFFF", "#6272a4")}
/>
</Box>
</Stack>