From bac2d2ecc296841099a1cd8ab31fd15f919dd8e7 Mon Sep 17 00:00:00 2001 From: Artur Janas Date: Wed, 23 Aug 2023 12:32:15 +0100 Subject: [PATCH] fix: bad rebase --- .../GlossaryTermPage/GlossaryTermPage.css | 8 ++++++-- .../GlossaryTermPage/GlossaryTermPageAside.tsx | 5 +++-- static/img/glossary/aws.png | Bin 345688 -> 0 bytes static/img/glossary/generic.png | Bin 359213 -> 0 bytes 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 static/img/glossary/aws.png delete mode 100644 static/img/glossary/generic.png 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 }) => (