From 540eabf4ff1d5fd2b003b3562bb6d94ed78dc138 Mon Sep 17 00:00:00 2001 From: Camila Sosa Morales Date: Tue, 16 May 2023 12:19:25 -0300 Subject: [PATCH] style: fix mobile designs --- ui/src/views/indexed-nfa/indexed-nfa.styles.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/src/views/indexed-nfa/indexed-nfa.styles.ts b/ui/src/views/indexed-nfa/indexed-nfa.styles.ts index e979ea8..f09b688 100644 --- a/ui/src/views/indexed-nfa/indexed-nfa.styles.ts +++ b/ui/src/views/indexed-nfa/indexed-nfa.styles.ts @@ -20,6 +20,7 @@ export const IndexedNFAStyles = { gridTemplateAreas: '"aside" "main"', gridTemplateColumns: '1fr', justifyItems: 'center', + padding: '0', }, }), @@ -145,6 +146,7 @@ export const IndexedNFAStyles = { display: 'flex', flexDirection: 'column', gap: Spacing, + width: '100%', }), Heading: styled('h2', { fontSize: '1.625rem', @@ -193,8 +195,8 @@ export const IndexedNFAStyles = { borderBottom: '1px solid $slate6', }), Elipse: styled('span', { - width: '0.375rem', - height: '0.375rem', + minWidth: '0.375rem', + minHeight: '0.375rem', backgroundColor: '$slate11', borderRadius: '100%', }),