improve initials centering

This commit is contained in:
Pavel Prichodko 2022-10-09 18:18:43 -05:00
parent bbe3463d94
commit 11e6831201
No known key found for this signature in database
GPG Key ID: 8E4C82D464215E83
1 changed files with 9 additions and 16 deletions

View File

@ -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))',
}, },
}, },
}, },