Change youtube banner color

pull/1657/head
Kamran Ahmed 3 years ago
parent 0224122e1a
commit 9e8dacbc6f
  1. 10
      components/sticky-banner.tsx

@ -6,18 +6,18 @@ export function StickyBanner() {
return ( return (
<Flex as={Link} <Flex as={Link}
href={siteConfig.url.youtube} href={siteConfig.url.youtube}
bg={'teal.900'} bg={'yellow.300'}
color='gray.300' color='gray.900'
alignItems='center' alignItems='center'
justifyContent='center' justifyContent='center'
py='7px' py='7px'
_hover={{ textDecoration: 'none', bg: 'teal.800', color: 'gray.100' }} _hover={{ textDecoration: 'none', bg: 'yellow.400', }}
target='_blank' target='_blank'
> >
<YouTubeLogo style={{ height: '20px', display: 'inline-block', marginRight: '7px' }} /> <YouTubeLogo style={{ height: '20px', display: 'inline-block', marginRight: '7px' }} />
<Text as='span' fontWeight={500} fontSize='14px'> <Text as='span' fontWeight={500} fontSize='14px'>
<Text as='span' d={['none', 'block']}>Subscribe to our YouTube channel for the video content.</Text> <Text as='span'>We now have a YouTube Channel. <Text as='span' d={['none', 'inline']}>Subscribe for the video
<Text as='span' d={['block', 'none']}>We now have a YouTube Channel.</Text> content.</Text></Text>
</Text> </Text>
</Flex> </Flex>
); );

Loading…
Cancel
Save