From ca2c2863c1c8766dd0dbbf5a5fd6ac53238b44ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yannik=20R=C3=B6del?= Date: Mon, 21 Mar 2022 16:26:38 +0100 Subject: [PATCH] Add rudimentary missing icon for homepage --- src/content/index.md | 14 +++++++++++++- src/styles/components/_actions.scss | 7 +++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/src/content/index.md b/src/content/index.md index 6ff2dfa..0061163 100644 --- a/src/content/index.md +++ b/src/content/index.md @@ -17,8 +17,20 @@ Wir schaffen Zugang in die digitale Welt

Du kannst uns auf vielen Wegen helfen: Spende deinen alten Computer. Spende Geld, damit wir Teile zum Aufrüsten kaufen können. Komme vorbei und pack mit an. Egal, für was du dich entscheidest, wir freuen uns auf deinen Beitrag.

- +

Computer bekommen

+ + + + + + + + + + + +
diff --git a/src/styles/components/_actions.scss b/src/styles/components/_actions.scss index 0eb6228..b6f8b29 100644 --- a/src/styles/components/_actions.scss +++ b/src/styles/components/_actions.scss @@ -25,6 +25,7 @@ > a { display: flex; flex-direction: column-reverse; + align-items: center; margin: layout.$large-gap 0; padding: layout.$large-gap; background: colors.$gray-50; @@ -71,12 +72,14 @@ > a { margin: 0; - &.first { + &:first-of-type { + flex-direction: row; + justify-content: space-between; position: relative; bottom: layout.$huge-gap; } - &:not(.first) { + &:not(:first-of-type) { grid-column: span 2; } }