This repository was archived by the owner on Apr 21, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React from 'react' ;
2- import { graphql , withPrefix , Link } from 'gatsby' ;
2+ import { graphql , withPrefix } from 'gatsby' ;
33import Helmet from 'react-helmet' ;
44import SEO from '../components/SEO' ;
55import Layout from '../components/Layout' ;
@@ -39,7 +39,7 @@ const Home = props => {
3939 </ div >
4040 { json . map ( edge => (
4141 < div key = { edge . node . id } className = "col-12 col-md-3 col-lg-3 mb-2" >
42- < div className = "feature" >
42+ < div className = "feature hoverable " >
4343 { edge . node . image && (
4444 < div className = "feature-image" >
4545 < img src = { withPrefix ( edge . node . image ) } />
@@ -84,7 +84,7 @@ const Home = props => {
8484 </ li >
8585 < li >
8686 < img src = { notApproved } alt = "unchecked icon" />
87- Teams with separate dev, ops and security teams
87+ Organizations with separate dev, ops and security teams
8888 </ li >
8989 </ ul >
9090 </ div >
Original file line number Diff line number Diff line change 100100 }
101101 }
102102}
103+
104+ .feature.hoverable {
105+ cursor : pointer ;
106+ & :hover {
107+ margin-top : -1px ;
108+ margin-bottom : 1px ;
109+ box-shadow : 2px 2px 8px rgba (0 , 0 , 0 , 0.1 );
110+ }
111+ }
You can’t perform that action at this time.
0 commit comments