summaryrefslogtreecommitdiff
path: root/src/components/shared/Basic.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/shared/Basic.tsx')
-rw-r--r--src/components/shared/Basic.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/shared/Basic.tsx b/src/components/shared/Basic.tsx
index c2ced0f..7071938 100644
--- a/src/components/shared/Basic.tsx
+++ b/src/components/shared/Basic.tsx
@@ -5,7 +5,7 @@ import s from './Basic.module.scss';
export function SectionNameType({ name, type }) {
return (
<h2 className={s.sectionNameType}>
- <span>{name}</span>
+ <span style={{ marginRight: 5 }}>{name}</span>
<span>{type}</span>
</h2>
);