Skip to content

Commit

Permalink
override gatsby image wrapper styles. (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgarropy authored Oct 13, 2021
1 parent 425ff46 commit e01004b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bradgarropy.com",
"version": "4.0.0",
"version": "4.0.1",
"description": "🏠 my home on the web",
"keywords": [
"javascript",
Expand Down
2 changes: 1 addition & 1 deletion src/components/LatestVideos/LatestVideos.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.thumbnailContainer {
overflow: visible;
overflow: visible !important;
}

.thumbnail {
Expand Down
4 changes: 3 additions & 1 deletion src/types/video.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import {IGatsbyImageData} from "gatsby-plugin-image"

type Video = {
id: string
title: string
thumbnail: unknown
thumbnail: IGatsbyImageData
}

export type {Video}

0 comments on commit e01004b

Please sign in to comment.