diff --git a/src/FilterLists.Web/ClientApp/components/ListDetails.tsx b/src/FilterLists.Web/ClientApp/components/ListDetails.tsx index 2d8f2e93e..ec7d53526 100644 --- a/src/FilterLists.Web/ClientApp/components/ListDetails.tsx +++ b/src/FilterLists.Web/ClientApp/components/ListDetails.tsx @@ -164,14 +164,9 @@ function EmailAddress(props: any) { function Maintainers(props: any) { return props.maintainers.length > 0 - ?
-
-

Maintainers

-
-
- {props.maintainers.map( - (maintainer: any) => )} -
+ ?
+ {props.maintainers.map( + (maintainer: any) => )}
: null; } @@ -179,7 +174,7 @@ function Maintainers(props: any) { function Maintainer(props: any) { return
-

{props.maintainer.name}

+

Maintained by {props.maintainer.name}

{props.maintainer.homeUrl diff --git a/src/FilterLists.Web/ClientApp/css/site.css b/src/FilterLists.Web/ClientApp/css/site.css index 92fb5f26e..be8d5ee37 100644 --- a/src/FilterLists.Web/ClientApp/css/site.css +++ b/src/FilterLists.Web/ClientApp/css/site.css @@ -1,20 +1,16 @@ -body { +body, h2, h3, h4, h5, blockquote { font-size: 16px; } -h2 { - font-size: 16px; - margin: 0; -} - -h5 { - font-size: 16px; -} - -blockquote { - font-size: 16px; +.panel { + margin-bottom: 0; } .panel-default { padding: 20px; +} + +.btn-block { + margin-top: 0; + margin-bottom: 5px; } \ No newline at end of file