Skip to content

Commit

Permalink
fix horizontal scroll and other bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Firebird1029 committed Jul 15, 2024
1 parent 253eef7 commit ffcd315
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions site/_data/repos.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ const manualOverrides = {
"A developer-friendly, standards-based API that enables Medicare beneficiaries to connect their claims data to applications, services and research programs they trust.",
category: "apis",
},
"CMSgov/easi-app": {
homepageUrl: "https://easi.cms.gov",
description:
"EASi is a web application supporting the IT governance process at CMS.",
category: "apps",
},
// "CMSgov/easi-app": {
// homepageUrl: "https://easi.cms.gov",
// description:
// "EASi is a web application supporting the IT governance process at CMS.",
// category: "apps",
// },
"Enterprise-CMCS/macpro-quickstart-serverless": {
description:
"Template for a serverless form submission application, built and deployed to AWS with the Serverless Application Framework.",
Expand Down Expand Up @@ -265,7 +265,9 @@ module.exports = async () => {
Object.keys(manualOverrides).forEach((path) => {
const [org, repo] = path.split("/")
const repoData = repos.find((x) => x.owner.login == org && x.name == repo)
Object.assign(repoData, manualOverrides[path])
if (repoData) {
Object.assign(repoData, manualOverrides[path])
}
})

repos.forEach((repo) => {
Expand Down
2 changes: 1 addition & 1 deletion site/projects.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ layout: base
<ul class="usa-card-group">
{% for repo in repos.repos %}
<li class="usa-card project-card tablet:grid-col-6">
<div class="usa-card__container">
<div class="usa-card__container" style="overflow-x: scroll;">
<div class="usa-card__header">
<h2 class="usa-card__heading">
<a href="{{repo.owner.login}}/{{repo.name}}/" class="text-no-underline">{{ repo.name }}</a>
Expand Down

0 comments on commit ffcd315

Please sign in to comment.