Skip to content

Commit

Permalink
Merge pull request #834 from CodeForPhilly/staging
Browse files Browse the repository at this point in the history
Deploy Staging to Main branch
  • Loading branch information
CodeWritingCow authored Jul 24, 2024
2 parents 1135698 + 145e5bb commit c11d74e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:

jobs:
update_release_draft:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -21,4 +20,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
config-name: .github/release-drafter.yml
config-name: release-drafter.yml
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:

jobs:
release:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion src/components/InfoGraphicSection.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Image, { StaticImageData } from 'next/image';
import type { IconType } from 'react-icons';
import { ThemeButtonLink } from './ThemeButton';
import './components-css/InfoGraphicSection.css';

interface InfoGraphicBase {
id?: string;
Expand Down Expand Up @@ -54,7 +55,7 @@ export const InfoGraphicSection = (props: InfoGraphicProps) => {
<Image
src={props.image.data}
alt={props.image.alt || ''}
className={`w-full rounded-[20px] ${
className={`w-full rounded-[20px] p-5 info-graphic ${
props.image.className && props.image.className
}`}
priority={(props.image.priority && props.image.priority) || false}
Expand Down
4 changes: 4 additions & 0 deletions src/components/components-css/InfoGraphicSection.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.info-graphic {
background-color: white;
forced-color-adjust: none;
}

0 comments on commit c11d74e

Please sign in to comment.