diff --git a/pages/_app.tsx b/pages/_app.tsx index 50aee94e1..6929efdce 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -17,13 +17,6 @@ const extendedTheme = extendTheme({ }, }), }, - /*components: { - Button: { - defaultProps: { - colorScheme: theme, - }, - }, - },*/ }); const MyApp = (props: AppProps) => { diff --git a/scenes/Profile/components/AvatarWithInfo.tsx b/scenes/Profile/components/AvatarWithInfo.tsx index 86ec5ac8d..8de48de11 100644 --- a/scenes/Profile/components/AvatarWithInfo.tsx +++ b/scenes/Profile/components/AvatarWithInfo.tsx @@ -1,4 +1,4 @@ -import { Avatar, Box, Flex, Heading } from "@chakra-ui/core"; +import { Avatar, Box, Flex, Heading, IconButton } from "@chakra-ui/core"; import Flag from "components/Flag"; import WeaponImage from "components/WeaponImage"; import { GetUserByIdentifierQuery } from "generated/graphql"; @@ -49,37 +49,46 @@ const AvatarWithInfo: React.FC = ({ user }) => { {user.profile?.twitterName && ( - - - - {user.profile.twitterName} - - + + } + color="#1DA1F2" + borderRadius="50%" + variant="ghost" + /> + )} {user.profile?.twitchName && ( - - - - {user.profile.twitchName} - - + + } + color="#6441A4" + borderRadius="50%" + variant="ghost" + /> + )} {user.profile?.youtubeId && ( - - - - YouTube - - + + } + color="#FF0000" + borderRadius="50%" + variant="ghost" + /> + )} {user.profile?.sensStick && (!!user.profile.sensStick || user.profile.sensStick === 0) && (