You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2021/06/28 19:40:59 UTC

[incubator-streampipes] branch dev updated: [hotfix] Increase space between buttons in data explorer overview

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 62ade4d  [hotfix] Increase space between buttons in data explorer overview
62ade4d is described below

commit 62ade4d60bbbb061c4f6784763927fbaab0bda20
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Mon Jun 28 21:40:18 2021 +0200

    [hotfix] Increase space between buttons in data explorer overview
---
 .../overview/data-explorer-dashboard-overview.component.html        | 4 ++--
 .../overview/data-explorer-dashboard-overview.component.scss        | 6 +++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.html b/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.html
index d4251a4..e84fb1f 100644
--- a/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.html
+++ b/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.html
@@ -19,7 +19,7 @@
 
 <div fxFlex="100" fxLayout="column" class="m-20">
     <div fxLayout="row wrap">
-        <button mat-button mat-raised-button color="primary" (click)="openNewDataViewDialog()">
+        <button mat-button mat-raised-button color="primary" (click)="openNewDataViewDialog()" class="mr-10">
             New Data View
         </button>
         <button mat-button mat-raised-button color="primary" (click)="openEditLabelView()">
@@ -78,4 +78,4 @@
     </div>
 
     <sp-configure-labels *ngIf="editLabels"></sp-configure-labels>
-</div>
\ No newline at end of file
+</div>
diff --git a/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.scss b/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.scss
index 33f12d5..f80d59e 100644
--- a/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.scss
+++ b/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.scss
@@ -46,4 +46,8 @@ table {
 
 .m-20 {
     margin: 20px;
-}
\ No newline at end of file
+}
+
+.mr-10 {
+    margin-right: 10px;
+}