Compare commits

..

No commits in common. "4c0628612f7611d213decc6e75d021843c49c3c6" and "075168a5d26cfcbb6b4b3786098488277012a586" have entirely different histories.

3 changed files with 2 additions and 6 deletions

View File

@ -2,7 +2,7 @@ import React, { FC } from 'react'
import { Button as AntdButton, ButtonProps as AntdButtonProps } from 'antd' import { Button as AntdButton, ButtonProps as AntdButtonProps } from 'antd'
export type ButtonProps = Omit<AntdButtonProps, 'danger' | 'ghost' | 'shape' | 'size' | 'type'> & { export type ButtonProps = Omit<AntdButtonProps, 'danger' | 'ghost' | 'shape' | 'size' | 'type'> & {
type?: 'primary' | 'default' | 'link' | 'text' type?: 'primary' | 'link' | 'text'
} }
export const Button: FC<ButtonProps> = (props) => { export const Button: FC<ButtonProps> = (props) => {
return <AntdButton type="primary" {...props} /> return <AntdButton type="primary" {...props} />

View File

@ -115,7 +115,7 @@ export const Header: FC<HeaderProps> = ({
<Breakpoint s up> <Breakpoint s up>
<StyledButton href={activeKitHref}>Activate Kit</StyledButton> <StyledButton href={activeKitHref}>Activate Kit</StyledButton>
</Breakpoint>} </Breakpoint>}
<StyledCartWrapper target="_blank" rel="noopener noreferrer" href="https://ihealthlabs.com/products/checkmesafe-home-collection-kit-C2"> <StyledCartWrapper target="_blank" rel="noopener noreferrer">
<Icon component={Cart} /> <Icon component={Cart} />
<StyledText>SHOP</StyledText> <StyledText>SHOP</StyledText>
</StyledCartWrapper> </StyledCartWrapper>

View File

@ -7,10 +7,6 @@ html, body {
font-weight: 500 !important; font-weight: 500 !important;
} }
.ant-btn-default {
border-color: #FF5A0C;
}
.ant-btn.ant-btn-icon-only { .ant-btn.ant-btn-icon-only {
width: 50px !important; width: 50px !important;
height: 50px !important; height: 50px !important;