This commit is contained in:
Hristo Nedelkov 2024-01-26 10:46:05 +02:00
parent 692f36ca96
commit c950617643
6 changed files with 5 additions and 6 deletions

View File

@ -6,7 +6,6 @@ type MarkdownProps = {
children: string
}
const Markdown = ({ children }: MarkdownProps) => {
return (
<ReactMarkdown

View File

@ -11,7 +11,7 @@ type AdvisoriesContentProps = {
const AdvisoriesContent = ({ title, content }: AdvisoriesContentProps) => {
const windowSize = useWindowSize()
return (
<YStack space={'$1'} width={windowSize.width < 780 ? '100%' : '70%'}>
<YStack space={'$1'} width={windowSize.width < 780 ? '100%' : '70%'}>
<Stack style={{ marginBottom: '5%' }}>
<Text size={27} weight={400}>
{title}

View File

@ -5,7 +5,7 @@
flex-wrap: wrap;
width: 250%;
}
.overviewCard {
border-radius: 16px;
border: 1px solid rgba(0, 0, 0, 0.15);

View File

@ -23,7 +23,7 @@ const ConsensusGaugeCard = ({ synced, total, title, color }: ConsensusGaugeCardP
borderRadius: '10px',
padding: '6px 12px',
borderWidth: '0.5px',
width: windowSize.width < 580 ? '100%' : 'auto',
width: windowSize.width < 580 ? '100%' : 'auto',
height: '100%',
}}
>

View File

@ -43,7 +43,7 @@ const ConsensusSelection = () => {
space={'$2'}
flexWrap={windowSize.width < 735 ? 'wrap' : 'nowrap'}
marginTop={windowSize.width < 735 ? '20px' : 0}
width={windowSize.width < 580 ? '100%' : 'auto'}
width={windowSize.width < 580 ? '100%' : 'auto'}
>
<PairedDeviceCard />

View File

@ -18,7 +18,7 @@ const ValidatorSetupInstall = () => {
}
return (
<YStack style={{ padding: '26px 32px', width:'100%' }}>
<YStack style={{ padding: '26px 32px', width: '100%' }}>
<Text size={27} weight={'semibold'}>
Client Setup
</Text>