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

improve the contributors page #1950

Merged
merged 2 commits into from
Mar 6, 2024
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
10 changes: 6 additions & 4 deletions website/templates/contributors.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{% extends "base.html" %}
{% block natural_content %}
{% include "includes/sidenav.html" %}
{% block style %}
<style type="text/tailwindcss">
@layer components {
.card {
Expand All @@ -15,7 +14,10 @@
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<div class="container my-20 py-8 w-[100vw] min-h-[100vh]">
{% endblock style %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="container py-8 min-h-[100vh]">
<div class="flex flex-col text-center gap-4 mb-10 p-4">
<div class="w-[full] h-max flex flex-col items-center">
<p class="text-7xl mb-5 font-bold">Meet our Community Members</p>
Expand Down Expand Up @@ -65,4 +67,4 @@
{% endfor %}
</div>
</div>
{% endblock natural_content %}
{% endblock content %}
Loading