From ed12d6d85e253ec77228d7cbe60f34b52934cabb Mon Sep 17 00:00:00 2001
From: George Katsikas <giorgakis.katsikas@gmail.com>
Date: Tue, 6 Jun 2023 11:50:16 +0200
Subject: [PATCH] fix suboptimal margins on prod page summary

---
 .../_productionstream_details_summary_contents.html    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/scipost_django/production/templates/production/_productionstream_details_summary_contents.html b/scipost_django/production/templates/production/_productionstream_details_summary_contents.html
index 2d1c64f52..73e3c53c4 100644
--- a/scipost_django/production/templates/production/_productionstream_details_summary_contents.html
+++ b/scipost_django/production/templates/production/_productionstream_details_summary_contents.html
@@ -1,6 +1,6 @@
-<div class="row">
+<div class="row mb-0">
     <div class="col">
-        <div class="row mb-0 align-items-center">
+        <div class="row align-items-center">
             <div class="col-auto">
                 <input type="checkbox"
                        class="form-check-input checkbox-lg"
@@ -8,7 +8,7 @@
                        id="productionstream-{{ productionstream.id }}-checkbox">
             </div>
             <div class="col">
-                <table class="mb-0">
+                <table>
                     <tbody>
                         <tr>
                             <td>
@@ -25,7 +25,7 @@
             </div>
         </div>
  
-        <div class="row mt-2 mb-0">
+        <div class="row">
             <div class="col">
                 <small class="text-muted">To be published in</small>
                 <br>
@@ -34,7 +34,7 @@
                     - {{ productionstream.submission.proceedings.event_suffix }}
                 {% endif %}
             </div>
-            <div class="col">
+            <div class="col-auto">
                 <small class="text-muted">Acceptance date</small>
                 <br>
                 {{ productionstream.submission.editorial_decision.taken_on|date:'Y-m-d' }}
-- 
GitLab