Compare commits
2 Commits
075168a5d2
...
4c0628612f
Author | SHA1 | Date | |
---|---|---|---|
|
4c0628612f | ||
|
c196059515 |
@ -2,7 +2,7 @@ import React, { FC } from 'react'
|
||||
import { Button as AntdButton, ButtonProps as AntdButtonProps } from 'antd'
|
||||
|
||||
export type ButtonProps = Omit<AntdButtonProps, 'danger' | 'ghost' | 'shape' | 'size' | 'type'> & {
|
||||
type?: 'primary' | 'link' | 'text'
|
||||
type?: 'primary' | 'default' | 'link' | 'text'
|
||||
}
|
||||
export const Button: FC<ButtonProps> = (props) => {
|
||||
return <AntdButton type="primary" {...props} />
|
||||
|
@ -115,7 +115,7 @@ export const Header: FC<HeaderProps> = ({
|
||||
<Breakpoint s up>
|
||||
<StyledButton href={activeKitHref}>Activate Kit</StyledButton>
|
||||
</Breakpoint>}
|
||||
<StyledCartWrapper target="_blank" rel="noopener noreferrer">
|
||||
<StyledCartWrapper target="_blank" rel="noopener noreferrer" href="https://ihealthlabs.com/products/checkmesafe-home-collection-kit-C2">
|
||||
<Icon component={Cart} />
|
||||
<StyledText>SHOP</StyledText>
|
||||
</StyledCartWrapper>
|
||||
|
@ -7,6 +7,10 @@ html, body {
|
||||
font-weight: 500 !important;
|
||||
}
|
||||
|
||||
.ant-btn-default {
|
||||
border-color: #FF5A0C;
|
||||
}
|
||||
|
||||
.ant-btn.ant-btn-icon-only {
|
||||
width: 50px !important;
|
||||
height: 50px !important;
|
||||
|
Loading…
Reference in New Issue
Block a user