From 8c257a8053b36c342c295ef84e5413728622a54a Mon Sep 17 00:00:00 2001
From: AndiMajore <andi.majore@googlemail.com>
Date: Sun, 7 Aug 2022 16:42:41 +0200
Subject: [PATCH] row and column style fix

---
 src/environments/environment.ts |  2 +-
 src/index.html                  |  2 +-
 src/stylesheets/styles.scss     | 23 ++++++++++++++++++++++-
 3 files changed, 24 insertions(+), 3 deletions(-)

diff --git a/src/environments/environment.ts b/src/environments/environment.ts
index 01f90109..9554a44b 100644
--- a/src/environments/environment.ts
+++ b/src/environments/environment.ts
@@ -1,6 +1,6 @@
 export const environment = {
   production: true,
-  backend: 'http://localhost:8001/',//'https://api.drugst.one/',
+  backend: 'https://api.drugst.one/',
 };
 
 
diff --git a/src/index.html b/src/index.html
index 58ba01f3..0831745e 100644
--- a/src/index.html
+++ b/src/index.html
@@ -88,7 +88,7 @@
 
 <button onclick="setNetwork('netexp1')">Add nodes</button>
 
-<div style="max-width: 80vw">
+<div style="max-width: 80vw; width: 1276px; height: 600px">
 
   <drugst-one id="netexp1"
               pluginId="2"
diff --git a/src/stylesheets/styles.scss b/src/stylesheets/styles.scss
index b2d949cb..cc6bb61e 100644
--- a/src/stylesheets/styles.scss
+++ b/src/stylesheets/styles.scss
@@ -29,7 +29,7 @@
     margin-bottom: 0;
   }
 
-  .is-fullwidth{
+  .is-fullwidth {
     width: 100%;
   }
 
@@ -41,6 +41,7 @@
   nav.navbar {
     height: 60px;
   }
+
   .modal-card {
     max-height: 90% !important;
   }
@@ -217,4 +218,24 @@
   button.is-secondary, button.is-secondary:hover {
     background-color: var(--drgstn-secondary) !important;
   }
+
+  .row > * {
+    padding-right: 0;
+    padding-left: 0;
+  }
+
+  .col > * {
+    padding-right: 0;
+    padding-left: 0;
+  }
+}
+
+.row > * {
+  padding-right: calc(1.5rem * .5);
+  padding-left: calc(1.5rem * .5);
+}
+
+.col > * {
+  padding-right: calc(1.5rem * .5);
+  padding-left: calc(1.5rem * .5);
 }
-- 
GitLab