Skip to content

Commit

Permalink
chore: small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed Aug 19, 2022
1 parent bd34d26 commit 15045b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions apps/meteor/client/components/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ type CardProps = {
const Card: FC<CardProps> = ({ variant, ...props }: CardProps) => (
<Box
borderRadius='x4'
pbs='x20'
pbe='x28'
pi='x20'
p='x20'
height='full'
display='flex'
flexDirection='column'
Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/client/components/Card/CardFooter.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ButtonGroup } from '@rocket.chat/fuselage';
import React, { FC } from 'react';

const CardFooter: FC = ({ children }) => <ButtonGroup>{children}</ButtonGroup>;
const CardFooter: FC = ({ children }) => <ButtonGroup medium>{children}</ButtonGroup>;

export default CardFooter;
4 changes: 2 additions & 2 deletions apps/meteor/client/views/home/DefaultHomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const DefaultHomePage = (): ReactElement => {
<Page data-qa='page-home' data-qa-type='default' backgroundColor='neutral-100'>
<HomePageHeader />
<PageScrollableContent>
<Box is='h1' fontScale='h1' minHeight='x40' data-qa-id='homepage-welcome-text'>
<Box is='h1' fontScale='h1' data-qa-id='homepage-welcome-text'>
{t('Welcome_to', { Site_Name: workspaceName || 'Rocket.Chat' })}
</Box>
<Box is='h3' fontScale='h3' marginBlock='x16'>
<Box is='h3' fontScale='h3' mb='x16'>
{t('Some_ideas_to_get_you_started')}
</Box>
<Grid>
Expand Down

0 comments on commit 15045b5

Please sign in to comment.