mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-23 05:08:01 -05:00
further profile styling
This commit is contained in:
@@ -4,7 +4,7 @@ import React from 'react';
|
||||
export const MetaTag: React.FC<TagProps> = React.forwardRef<HTMLSpanElement>(
|
||||
({ children, ...props }, ref) => (
|
||||
<Tag
|
||||
fontFamily="body"
|
||||
fontFamily="exo2"
|
||||
fontSize="sm"
|
||||
fontWeight="bold"
|
||||
backgroundColor="purpleTag"
|
||||
|
||||
@@ -44,6 +44,8 @@ export const PlayerColorDisposition: React.FC<Props> = ({
|
||||
2,
|
||||
)}`}
|
||||
maxH="6rem"
|
||||
fontSize={{ base: 'sm', sm: 'md' }}
|
||||
// fontWeight="600" 600 === 700 :{ and 700 is bold :S
|
||||
>
|
||||
<ColorBar mask={type.mask} />
|
||||
</Link>
|
||||
|
||||
@@ -22,7 +22,12 @@ export const PlayerType: React.FC<Props> = ({
|
||||
>
|
||||
{player.type?.title && (
|
||||
<FlexContainer align="stretch" fontSize={{ base: 'sm', sm: 'md' }}>
|
||||
<Text color="white" fontWeight="bold" casing="uppercase">
|
||||
<Text
|
||||
color="white"
|
||||
// fontWeight="600" 600 === 700 :{ and 700 is too much
|
||||
casing="uppercase"
|
||||
fontSize={{ base: 'sm', sm: 'md' }}
|
||||
>
|
||||
{player.type.title}
|
||||
</Text>
|
||||
<Text color="blueLight">{player.type.description}</Text>
|
||||
|
||||
Reference in New Issue
Block a user