From 5bff8f1e81d441b04882d11fbe3edbee6071fa3c Mon Sep 17 00:00:00 2001 From: Michal Sapka Date: Tue, 6 Sep 2022 23:44:48 +0200 Subject: feat: border around photo --- pages/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pages/index.tsx') diff --git a/pages/index.tsx b/pages/index.tsx index 47a944fd..a654d937 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")} /> -- cgit v1.2.3