From 4cb03ce6762bdf5419eecb4ea75bb025bb63f26f Mon Sep 17 00:00:00 2001
From: lilly
Date: Wed, 10 Jun 2026 11:20:13 +0200
Subject: [PATCH] add address
---
src/pages/index.md | 14 ++++++++++++++
src/styles/global.css | 26 +++++++++++++++++++++++++-
2 files changed, 39 insertions(+), 1 deletion(-)
diff --git a/src/pages/index.md b/src/pages/index.md
index 9899de0..2feb145 100644
--- a/src/pages/index.md
+++ b/src/pages/index.md
@@ -17,6 +17,20 @@ Wir wollen das nicht hinnehmen.
Daher gehen wir auf die Straße. Am 20.06. um 14 Uhr in Hamburg, auf dem Hansaplatz.
+## Wo?
+
+
+
+ Hansaplatz
+ 20099 Hamburg
+
+
+
+
+
---
## Aktuelle Gesetzesänderungen
diff --git a/src/styles/global.css b/src/styles/global.css
index ee4e539..1f10acf 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -90,12 +90,36 @@
nav {
display: flex;
justify-content: center;
- gap: var(--space-s);
+ gap: var(--space-xs);
li {
list-style: none;
}
}
}
+
+ .place {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-around;
+ align-items: center;
+ gap: var(--space-s);
+
+ .osm-embedd {
+ flex-grow: 1;
+ min-width: 400px;
+ max-width: 600px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: var(--space-xs);
+
+ iframe {
+ border: 1px solid var(--color-primary);
+ width: 100%;
+ aspect-ratio: 1;
+ }
+ }
+ }
}