Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix spacing around member elements and duplicate headings #28

Merged
merged 2 commits into from
Feb 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
1 change: 0 additions & 1 deletion themes/waycrate/assets/css/input.css
Original file line number Diff line number Diff line change
@@ -149,7 +149,6 @@ main, p {
cursor: pointer;
}


@layer base {
@font-face {
font-family: 'UbuntuMonoRegular';
16 changes: 8 additions & 8 deletions themes/waycrate/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -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;
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 }}
4 changes: 2 additions & 2 deletions themes/waycrate/theme.toml
Original file line number Diff line number Diff line change
@@ -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'}
]