Skip to content

Commit

Permalink
fix spacing around member elements and duplicate headings (#28)
Browse files Browse the repository at this point in the history
* fix: spacing around member elements

* fix: remove duplicate headings
  • Loading branch information
lavafroth authored Feb 9, 2025
1 parent 4f27935 commit 4521af0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
5 changes: 1 addition & 4 deletions content/outreach/gsoc/2024/contributors.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 0 additions & 1 deletion themes/waycrate/assets/css/input.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ main, p {
cursor: pointer;
}


@layer base {
@font-face {
font-family: 'UbuntuMonoRegular';
Expand Down
16 changes: 8 additions & 8 deletions themes/waycrate/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down Expand Up @@ -969,6 +965,10 @@ main, p {
padding: 0.5rem;
}

.p-4 {
padding: 1rem;
}

.p-6 {
padding: 1.5rem;
}
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion themes/waycrate/layouts/shortcodes/member.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="inline-flex flex-col items-center">
<div class="inline-flex flex-col items-center p-4">
{{ if .Get "url" }}
<a class="border-none hover:border-none" {{ with .Get "url" }} href="{{ . | safeURL }}" {{ end }}>
{{ end }}
Expand Down
4 changes: 2 additions & 2 deletions themes/waycrate/theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'}
]

0 comments on commit 4521af0

Please sign in to comment.