From b357617778ee875242b989f1b6554137081d3ce2 Mon Sep 17 00:00:00 2001
From: Jake <j.vondoemming@stud.uni-goettingen.de>
Date: Mon, 3 Oct 2022 02:24:34 +0200
Subject: [PATCH] added support for columns

---
 theme/static/css/main.css | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/theme/static/css/main.css b/theme/static/css/main.css
index 8accb73..2f2cdf2 100644
--- a/theme/static/css/main.css
+++ b/theme/static/css/main.css
@@ -21,6 +21,7 @@
 	--header-menu-hover-bg-color: #E6E6E6;
 	--header-menu-button-size: 3rem;
 	--outline-color: #337AB7;
+	--col-width: auto;
 }
 
 * {
@@ -540,6 +541,20 @@ ul.cards li a:hover {
 
 
 
+.columns {
+	display: flex;
+	flex-direction: row;
+	flex-wrap: nowrap;
+	width: 100%;
+}
+
+.column {
+	/*width: auto;*/
+	width: var(--col-width);
+}
+
+
+
 
 .info, .success, .warning, .danger, .alert {
 	padding:1em;
-- 
GitLab