diff --git a/package-lock.json b/package-lock.json index 2f2520d9..3b1f67a0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bradgarropy.com", - "version": "4.0.0", + "version": "4.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "bradgarropy.com", - "version": "4.0.0", + "version": "4.0.1", "license": "MIT", "dependencies": { "@babel/runtime": "^7.15.4", diff --git a/package.json b/package.json index 1852b3a2..657ab8d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bradgarropy.com", - "version": "4.0.0", + "version": "4.0.1", "description": "🏠 my home on the web", "keywords": [ "javascript", diff --git a/src/components/LatestVideos/LatestVideos.module.css b/src/components/LatestVideos/LatestVideos.module.css index 43fe587d..d0049f6f 100644 --- a/src/components/LatestVideos/LatestVideos.module.css +++ b/src/components/LatestVideos/LatestVideos.module.css @@ -12,7 +12,7 @@ } .thumbnailContainer { - overflow: visible; + overflow: visible !important; } .thumbnail { diff --git a/src/types/video.ts b/src/types/video.ts index 6f60acbe..60f38098 100644 --- a/src/types/video.ts +++ b/src/types/video.ts @@ -1,7 +1,9 @@ +import {IGatsbyImageData} from "gatsby-plugin-image" + type Video = { id: string title: string - thumbnail: unknown + thumbnail: IGatsbyImageData } export type {Video}