diff --git a/src/components/GlossaryTermPage/GlossaryTermPage.css b/src/components/GlossaryTermPage/GlossaryTermPage.css index 93c214fc..c3b11b99 100644 --- a/src/components/GlossaryTermPage/GlossaryTermPage.css +++ b/src/components/GlossaryTermPage/GlossaryTermPage.css @@ -87,10 +87,14 @@ .glossary-term__aside { order: -1; margin: 0; + } + .glossary-term__aside-def{ + margin-left: .625rem; + } + .glossary-term__aside-content { padding-left: 1.5rem; } - .glossary-term__content, - .glossary-term__aside { + .glossary-term__content{ margin-top: 1.5rem; } } diff --git a/src/components/GlossaryTermPage/GlossaryTermPageAside.tsx b/src/components/GlossaryTermPage/GlossaryTermPageAside.tsx index 5ce12966..3876023e 100644 --- a/src/components/GlossaryTermPage/GlossaryTermPageAside.tsx +++ b/src/components/GlossaryTermPage/GlossaryTermPageAside.tsx @@ -2,14 +2,15 @@ import React from 'react'; import { GlossaryTermType } from '../GlossarySearch'; import OpenBookIcon from '../icons/OpenBookIcon'; -const imgUrlPrefix = '/img/glossary/'; +const glossaryPrefix = '/img/glossary/'; +const vendorPrefix = '/img/services/'; const GlossaryTermPageAside = ({ term }: { term: GlossaryTermType }) => (