improve initials centering
This commit is contained in:
parent
f0178d2494
commit
b32fa3a77a
|
@ -80,6 +80,9 @@ export const Content = styled('div', {
|
||||||
borderRadius: '100%',
|
borderRadius: '100%',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: '100%',
|
height: '100%',
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
justifyContent: 'center',
|
||||||
})
|
})
|
||||||
|
|
||||||
export const Indicator = styled('span', {
|
export const Indicator = styled('span', {
|
||||||
|
@ -117,56 +120,46 @@ export const Indicator = styled('span', {
|
||||||
})
|
})
|
||||||
|
|
||||||
export const Initials = styled('div', {
|
export const Initials = styled('div', {
|
||||||
width: '100%',
|
|
||||||
height: '100%',
|
|
||||||
color: '$accent-11',
|
color: '$accent-11',
|
||||||
opacity: 0.7,
|
opacity: 0.7,
|
||||||
textAlign: 'center',
|
textAlign: 'center',
|
||||||
fontWeight: '$600',
|
fontWeight: '$600',
|
||||||
fontSize: 15,
|
fontSize: 15,
|
||||||
textTransform: 'uppercase',
|
textTransform: 'uppercase',
|
||||||
verticalAlign: 'baseline',
|
verticalAlign: 'middle',
|
||||||
|
display: 'inline-block',
|
||||||
|
|
||||||
variants: {
|
variants: {
|
||||||
size: {
|
size: {
|
||||||
16: {
|
16: {
|
||||||
fontSize: 'calc(16 * 0.4px)',
|
fontSize: 'calc(16 * 0.5px)',
|
||||||
lineHeight: 'calc(16px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
20: {
|
20: {
|
||||||
fontSize: 'calc(20 * 0.4px)',
|
fontSize: 'calc(20 * 0.5px)',
|
||||||
lineHeight: 'calc(20px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
24: {
|
24: {
|
||||||
fontSize: 'calc(24 * 0.4px)',
|
fontSize: 'calc(24 * 0.5px)',
|
||||||
lineHeight: 'calc(24px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
32: {
|
32: {
|
||||||
fontSize: 'calc(32 * 0.4px)',
|
fontSize: 'calc(32 * 0.4px)',
|
||||||
lineHeight: 'calc(32px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
36: {
|
36: {
|
||||||
fontSize: 'calc(36 * 0.4px)',
|
fontSize: 'calc(36 * 0.4px)',
|
||||||
lineHeight: 'calc(36px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
40: {
|
40: {
|
||||||
fontSize: 'calc(40 * 0.4px)',
|
fontSize: 'calc(40 * 0.4px)',
|
||||||
lineHeight: 'calc(40px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
44: {
|
44: {
|
||||||
fontSize: 'calc(44 * 0.4px)',
|
fontSize: 'calc(44 * 0.4px)',
|
||||||
lineHeight: 'calc(44px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
64: {
|
64: {
|
||||||
fontSize: 'calc(64 * 0.4px)',
|
fontSize: 'calc(64 * 0.4px)',
|
||||||
lineHeight: 'calc(64px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
80: {
|
80: {
|
||||||
fontSize: 'calc(80 * 0.4px)',
|
fontSize: 'calc(80 * 0.4px)',
|
||||||
lineHeight: 'calc(80px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
120: {
|
120: {
|
||||||
fontSize: 'calc(120 * 0.4px)',
|
fontSize: 'calc(120 * 0.4px)',
|
||||||
lineHeight: 'calc(120px - var(--identicon-size))',
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue