diff --git a/src/FilterLists.Web/src/modules/home/components/detailsExpander/DetailsExpander.tsx b/src/FilterLists.Web/src/modules/home/components/detailsExpander/DetailsExpander.tsx index c1de123f4..54c7002be 100644 --- a/src/FilterLists.Web/src/modules/home/components/detailsExpander/DetailsExpander.tsx +++ b/src/FilterLists.Web/src/modules/home/components/detailsExpander/DetailsExpander.tsx @@ -16,7 +16,7 @@ export const DetailsExpander = (props: Props) =>
-
+
diff --git a/src/FilterLists.Web/src/modules/home/components/detailsExpander/LinkButtonGroup.tsx b/src/FilterLists.Web/src/modules/home/components/detailsExpander/LinkButtonGroup.tsx index 888e57b6d..5049b2026 100644 --- a/src/FilterLists.Web/src/modules/home/components/detailsExpander/LinkButtonGroup.tsx +++ b/src/FilterLists.Web/src/modules/home/components/detailsExpander/LinkButtonGroup.tsx @@ -1,5 +1,6 @@ import * as React from "react"; import { ChatButton, DonateButton, EmailButton, ForumButton, HomeButton, IssuesButton, PolicyButton, SubmitButton, SubscribeButton, ViewButton } from "../linkButtons"; +import "./linkButtonGroup.css"; interface Props { chatUrl: string; @@ -16,7 +17,7 @@ interface Props { }; export const LinkButtonGroup = (props: Props) => -
+
diff --git a/src/FilterLists.Web/src/modules/home/components/detailsExpander/infoCard/InfoCard.tsx b/src/FilterLists.Web/src/modules/home/components/detailsExpander/infoCard/InfoCard.tsx index 0ca8ada5f..fd52dac1f 100644 --- a/src/FilterLists.Web/src/modules/home/components/detailsExpander/infoCard/InfoCard.tsx +++ b/src/FilterLists.Web/src/modules/home/components/detailsExpander/infoCard/InfoCard.tsx @@ -27,7 +27,7 @@ interface Props { }; export const InfoCard = (props: Props) => -
+
{props.columnVisibility.filter((c: IColumnVisibility) => c.column === "Tags")[0].visible ? null : } diff --git a/src/FilterLists.Web/src/modules/home/components/detailsExpander/linkButtonGroup.css b/src/FilterLists.Web/src/modules/home/components/detailsExpander/linkButtonGroup.css new file mode 100644 index 000000000..a590b0139 --- /dev/null +++ b/src/FilterLists.Web/src/modules/home/components/detailsExpander/linkButtonGroup.css @@ -0,0 +1,3 @@ +.btn-group-vertical { + display: inline; +}