mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
adding primary font and updating css for radio component
This commit is contained in:
parent
d1d45c7c61
commit
dca6b9e052
@ -14,9 +14,10 @@ const {
|
||||
|
||||
const {
|
||||
default: styled,
|
||||
css
|
||||
} = Styled;
|
||||
|
||||
const CustomInputCircle = `
|
||||
const CustomInputCircle = css`
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
|
@ -6,7 +6,8 @@ const Styled = require('styled-components');
|
||||
|
||||
const {
|
||||
boxes,
|
||||
colors
|
||||
colors,
|
||||
typography
|
||||
} = constants;
|
||||
|
||||
const {
|
||||
@ -47,7 +48,7 @@ const StyledToggleLabel = styled.div`
|
||||
|
||||
&::before {
|
||||
content: "Off";
|
||||
font-family: inherit;
|
||||
font-family: ${typography.fontPrimary};
|
||||
font-size: inherit;
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
|
@ -102,6 +102,7 @@ const colors = {
|
||||
};
|
||||
|
||||
const typography = {
|
||||
fontPrimary: 'sans serif',
|
||||
dtFontWeight: 'bold',
|
||||
abbrBorderColor: colors.grayLight,
|
||||
textMuted: colors.grayLight
|
||||
|
Loading…
Reference in New Issue
Block a user