diff --git a/src/components/pages/Home.tsx b/src/components/pages/Home.tsx index a83db04..dbeb3c1 100644 --- a/src/components/pages/Home.tsx +++ b/src/components/pages/Home.tsx @@ -1,5 +1,5 @@ import * as React from "react"; -import { Text, VStack, Code, useColorModeValue, Flex, Button, Tooltip } from "@chakra-ui/react"; +import { Text, VStack, Code, useColorModeValue, Flex, Button, Tooltip, Icon } from "@chakra-ui/react"; import { ReactComponent as DiceOutlineDarkAnimated } from "./../../images/logo/animated/non-looped/Text_Outline_Dark_animated.svg"; import { ReactComponent as DiceOutlineLightAnimated } from "./../../images/logo/animated/non-looped/Text_Outline_Light_animated.svg"; import "../../styles/Home.css"; @@ -393,8 +393,8 @@ const Home = (props: Props) => { for  */} Live Now - - + >
diff --git a/src/styles/Home.css b/src/styles/Home.css index 3133ade..9af3090 100644 --- a/src/styles/Home.css +++ b/src/styles/Home.css @@ -101,6 +101,27 @@ scroll-snap-align: start; padding-left: 150px; } +.rainbow { + animation: colorRotate 2s linear 0s infinite; +} + +@keyframes colorRotate { + from { + color: #6666ff; + } + 10% { + color: #0099ff; + } + 50% { + color: #00ff00; + } + 75% { + color: #ff3399; + } + 100% { + color: #6666ff; + } +} @media screen and (max-width: 900px) { .Home section { padding-left: 100px;