From 1a084c1596d7891063119c100c555ab752b68b90 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Fri, 30 Aug 2024 09:29:00 +0530 Subject: [PATCH 1/2] fix: spacing around member elements --- themes/waycrate/assets/css/input.css | 1 - themes/waycrate/assets/css/main.css | 16 ++++++++-------- themes/waycrate/layouts/shortcodes/member.html | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/themes/waycrate/assets/css/input.css b/themes/waycrate/assets/css/input.css index b3c6028..1214247 100644 --- a/themes/waycrate/assets/css/input.css +++ b/themes/waycrate/assets/css/input.css @@ -149,7 +149,6 @@ main, p { cursor: pointer; } - @layer base { @font-face { font-family: 'UbuntuMonoRegular'; diff --git a/themes/waycrate/assets/css/main.css b/themes/waycrate/assets/css/main.css index 60c1a65..494960a 100644 --- a/themes/waycrate/assets/css/main.css +++ b/themes/waycrate/assets/css/main.css @@ -908,10 +908,6 @@ main, p { list-style-type: none; } -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); -} - .grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); } @@ -969,6 +965,10 @@ main, p { padding: 0.5rem; } +.p-4 { + padding: 1rem; +} + .p-6 { padding: 1.5rem; } @@ -1045,14 +1045,14 @@ main, p { position: static; } - .md\:col-span-2 { - grid-column: span 2 / span 2; - } - .md\:col-span-1 { grid-column: span 1 / span 1; } + .md\:col-span-2 { + grid-column: span 2 / span 2; + } + .md\:my-0 { margin-top: 0px; margin-bottom: 0px; diff --git a/themes/waycrate/layouts/shortcodes/member.html b/themes/waycrate/layouts/shortcodes/member.html index 78007c2..a6b0e31 100644 --- a/themes/waycrate/layouts/shortcodes/member.html +++ b/themes/waycrate/layouts/shortcodes/member.html @@ -1,4 +1,4 @@ -
+
{{ if .Get "url" }} {{ end }} From fcd8f2076ce89ec8443c4ac029e4654962e3dd0a Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Fri, 30 Aug 2024 09:29:24 +0530 Subject: [PATCH 2/2] fix: remove duplicate headings --- content/outreach/gsoc/2024/contributors.md | 5 +---- themes/waycrate/theme.toml | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/content/outreach/gsoc/2024/contributors.md b/content/outreach/gsoc/2024/contributors.md index bcba450..d5141d7 100644 --- a/content/outreach/gsoc/2024/contributors.md +++ b/content/outreach/gsoc/2024/contributors.md @@ -1,10 +1,7 @@ --- -layout: layout.njk -title: GSOC 2024 Contributors for Waycrate +title: GSOC 2024 Contributors Selected! --- -# GSOC 2024 Contributors Selected! - Greetings Everyone! Waycrate is thrilled to announce the selection of contributors for Google Summer of Code 2024! We are incredibly excited to welcome these talented individuals to our team as they embark on their respective projects throughout the summer. diff --git a/themes/waycrate/theme.toml b/themes/waycrate/theme.toml index faf7878..5b43aab 100644 --- a/themes/waycrate/theme.toml +++ b/themes/waycrate/theme.toml @@ -10,6 +10,6 @@ tags = ['custom', 'waycrate'] # If the theme has multiple authors authors = [ - {name = 'Waycrate', homepage = 'https://waycrate.github.io'} - {name = 'Himadri Bhattacharjee', homepage = 'https://lavafroth.is-a.dev'}, + {name = 'Waycrate', homepage = 'https://waycrate.github.io'}, + {name = 'Himadri Bhattacharjee', homepage = 'https://lavafroth.is-a.dev'} ]