Skip to content

Commit

Permalink
Fix partner logo hover
Browse files Browse the repository at this point in the history
  • Loading branch information
Breno committed Nov 8, 2024
1 parent 652e2a2 commit cd3a1ac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/PartnersPage/Benefits/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { StaticImage } from 'gatsby-plugin-image';
import Container from '../../Container';
import { defaultWrapperDarkBlue } from '../../../globalStyles/wrappers.module.less';
import Card from '../Card';
import TopPlatformIcon from '../../../svgs/top-platform.svg';
import TopPlatformIcon from '../../../svgs/success.svg';
import IndustryTrendsIcon from '../../../svgs/industry-trends.svg';
import EngineerIcon from '../../../svgs/engineer.svg';
import ConnectorsIcon from '../../../svgs/connectors.svg';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@
gap: 16px;
margin: 0;

&:hover {
> :nth-child(1) {
border: 2px solid #7284FF;
padding: calc(0.5vw - 1px);
}
}

> :nth-child(1) {
border: 1px solid #A4B6F4;
border-radius: 1.5vw;
Expand All @@ -56,11 +63,6 @@
align-items: center;
justify-content: center;

&:hover {
border: 2px solid #7284FF;
padding: calc(0.5vw - 1px);
}

@media(min-width: 1620px) {
width: 100px;
height: 100px;
Expand Down Expand Up @@ -109,10 +111,15 @@
}

ul {

a {
span {
font-size: 0.875rem;
}

> :nth-child(1) {
border-radius: 4vw;
}
}
}
}
Expand Down

0 comments on commit cd3a1ac

Please sign in to comment.