From fbaa5041a71b85e4cb682e674f5f00898eed7969 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Thu, 7 Feb 2019 10:43:16 +0100 Subject: [PATCH] added spacing between tags on changeset detail page --- .../src/repos/components/changesets/ChangesetDetails.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scm-ui/src/repos/components/changesets/ChangesetDetails.js b/scm-ui/src/repos/components/changesets/ChangesetDetails.js index 217b236122..fab976b797 100644 --- a/scm-ui/src/repos/components/changesets/ChangesetDetails.js +++ b/scm-ui/src/repos/components/changesets/ChangesetDetails.js @@ -22,6 +22,11 @@ import { ExtensionPoint } from "@scm-manager/ui-extensions"; const styles = { spacing: { marginRight: "1em" + }, + tags: { + "& .tag": { + marginLeft: ".25rem" + } } }; @@ -106,10 +111,11 @@ class ChangesetDetails extends React.Component { }; renderTags = () => { + const { classes } = this.props; const tags = this.getTags(); if (tags.length > 0) { return ( -
+
{tags.map((tag: Tag) => { return ; })}