Commit e52f3e3c authored by Max Alekseenko's avatar Max Alekseenko

remove unused styles

parent 02c16f9d
...@@ -84,17 +84,17 @@ const FeaturedApp = ({ ...@@ -84,17 +84,17 @@ const FeaturedApp = ({
return ( return (
<LinkBox role="group"> <LinkBox role="group">
<Flex <Flex
gap={{ base: 4, sm: 6 }} gap={ 6 }
borderRadius={{ base: '8px', sm: '12px' }} borderRadius="md"
height={{ base: '135px', sm: '136px' }} height="136px"
padding={{ base: 3, sm: 5 }} padding={ 5 }
background={ backgroundColor } background={ backgroundColor }
mb={ 6 } mb={ 6 }
> >
<Skeleton <Skeleton
isLoaded={ !isLoading } isLoaded={ !isLoading }
w={{ base: '64px', sm: '96px' }} w="96px"
h={{ base: '64px', sm: '96px' }} h="96px"
display="flex" display="flex"
alignItems="center" alignItems="center"
justifyContent="center" justifyContent="center"
...@@ -102,7 +102,7 @@ const FeaturedApp = ({ ...@@ -102,7 +102,7 @@ const FeaturedApp = ({
<Image <Image
src={ isLoading ? undefined : logoUrl } src={ isLoading ? undefined : logoUrl }
alt={ `${ title } app icon` } alt={ `${ title } app icon` }
borderRadius={{ base: '8px', sm: '12px' }} borderRadius="md"
/> />
</Skeleton> </Skeleton>
...@@ -110,7 +110,7 @@ const FeaturedApp = ({ ...@@ -110,7 +110,7 @@ const FeaturedApp = ({
<Flex alignItems="center" gap={ 3 }> <Flex alignItems="center" gap={ 3 }>
<Skeleton <Skeleton
isLoaded={ !isLoading } isLoaded={ !isLoading }
fontSize={{ base: 'sm', sm: '30px' }} fontSize="30px"
fontWeight="semibold" fontWeight="semibold"
fontFamily="heading" fontFamily="heading"
lineHeight="36px" lineHeight="36px"
...@@ -140,7 +140,7 @@ const FeaturedApp = ({ ...@@ -140,7 +140,7 @@ const FeaturedApp = ({
{ !isLoading && ( { !isLoading && (
<Link <Link
fontSize={{ base: 'xs', sm: 'sm' }} fontSize="sm"
fontWeight="500" fontWeight="500"
href="#" href="#"
onClick={ handleInfoClick } onClick={ handleInfoClick }
...@@ -170,7 +170,7 @@ const FeaturedApp = ({ ...@@ -170,7 +170,7 @@ const FeaturedApp = ({
<Skeleton <Skeleton
isLoaded={ !isLoading } isLoaded={ !isLoading }
fontSize={{ base: 'xs', sm: 'sm' }} fontSize="sm"
lineHeight="20px" lineHeight="20px"
noOfLines={ 2 } noOfLines={ 2 }
> >
...@@ -199,7 +199,7 @@ const IframeBanner = () => { ...@@ -199,7 +199,7 @@ const IframeBanner = () => {
position="relative" position="relative"
h="136px" h="136px"
w="100%" w="100%"
borderRadius="12px" borderRadius="md"
mb={{ base: 4, sm: 6 }} mb={{ base: 4, sm: 6 }}
overflow="hidden" overflow="hidden"
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment