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

Final Edits for System Design Project details #2398

Merged
Merged
Show file tree
Hide file tree
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
9 changes: 1 addition & 8 deletions _projects/design-systems.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
# 'identification' is the 9 digit ID for your repo in the GitHub API.
identification: '385751884'
title: Design Systems
description: 'The Design System initiative seeks to empower volunteers with the tools, documentation and templates for creating and maintaining a design system for their HfLA projects. As Hack for LA continues to scale it has become more essential to create consistent documentation and standards for design deliverables.
Expand All @@ -13,29 +12,23 @@ image-hero: /assets/images/projects/design-systems-hero.jpg
alt-hero: 'Design Systems hero background'
leadership:
links:
- name: Github
- name: GitHub
url: 'https://github.com/hackforla/design-systems'
- name: Slack
url: 'https://hackforla.slack.com/archives/CH2U1CB9Q'
- name: Wiki
url: 'https://github.com/hackforla/design-systems/wiki'
- name: Overview
url: https://github.com/hackforla/product-management/blob/master/project-one-sheets/Design-Systems-One-Sheet.pdf
# unused links can be commented out
# - name: Showcase deck
# url: ''
# alt: ''
looking:
technologies:
location:
- Remote
# must choose one of the above (closest)
partner:
tools:
program-area:
- Civic Tech Infrastructure
status: Active
# If the card should not be included on the site, change visible to "false"
visible: true
# If the project should not have a project homepage for any given reason, add the following line (uncommented):
# project-homepage: false
Expand Down
11 changes: 4 additions & 7 deletions _sass/components/_project-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
justify-content: flex-end;
padding: 20px;
position: relative;
margin-top: 29px;
margin-top: 61px;
width: 100vw;
height: 46vw;
max-height: 74vh;
Expand Down Expand Up @@ -51,9 +51,9 @@
background: #030d2d;

// NEW MOBILE FRIENDLY RULES
@media #{$bp-below-mobile} {
// @media #{$bp-below-mobile} {

}
// }
}

.page-card--project-description-page {
Expand Down Expand Up @@ -154,7 +154,7 @@

.getting-started-button {
width: 38px;
height: 34px;;
height: 34px;
margin: 0 5px;
border: none;
background: transparent;
Expand Down Expand Up @@ -185,7 +185,6 @@
border: 1px solid rgba(51,51,51,0.1);
border-radius: 16px;
padding: 5px 15px;
text-align: left;
}

.help-getting-started-text {
Expand All @@ -208,7 +207,6 @@
text-align: center;
min-width: 0px;
transition: min-width 1s, padding 1s;
text-align: left;
}

.project-start-guide-img {
Expand Down Expand Up @@ -350,7 +348,6 @@
border: 1px solid rgba(51,51,51,0.1);
border-radius: 16px;
padding: 5px 15px;
text-align: left;
}

.empty-content-message p {
Expand Down
6 changes: 5 additions & 1 deletion github-actions/github-data/get-project-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ const _ = require('lodash');
// Record the time this script started running so it can be stored later
const dateRan = new Date();
// Hard coded list of untagged repos we would like to fetch data on
const untaggedRepoIds = [79977929];
// 79977929 -> https://github.com/hunterowens/workfor.la
// 277577906 -> https://github.com/codeforamerica/brigade-playbook
// 302142959 -> https://github.com/hackforla/GreenEarthOS
// 385751884 -> https://github.com/hackforla/design-systems
const untaggedRepoIds = [79977929, 277577906, 302142959, 385751884];

// Extend Octokit with new contributor endpoints and construct instance of class with API token
Object.assign(Octokit.prototype, trueContributorsMixin);
Expand Down