Skip to content

Commit

Permalink
Minor (CSS).
Browse files Browse the repository at this point in the history
  • Loading branch information
baobabKoodaa committed Apr 20, 2019
1 parent afb6604 commit 70ed8ba
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
28 changes: 18 additions & 10 deletions src/components/Article/ReTracedSVGGallery.js
Expand Up @@ -24,16 +24,24 @@ const ReTracedSVGGallery = (props) => {
id
absolutePath
childImageSharp {
fluid(maxWidth: 800, maxHeight: 360, cropFocus: CENTER, quality: 90, traceSVG: { color: "#f9ebd2" }) {
tracedSVG
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
originalImg
}
fluid(
maxWidth: 800,
maxHeight: 360,
cropFocus: CENTER,
quality: 90,
traceSVG: {
color: "#f9ebd2",
}
) {
tracedSVG
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
originalImg
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Menu/Item.js
Expand Up @@ -48,7 +48,7 @@ const Item = props => {
:global(a) {
color: ${theme.text.color.primary};
padding: ${theme.space.inset.s};
transition: all ${theme.time.duration.default};
transition: all 0s;
border-radius: ${theme.size.radius.small};
}
Expand All @@ -62,7 +62,7 @@ const Item = props => {
}
:global(svg) {
transition: all ${theme.time.duration.default};
transition: all 0s;
}
&:hover :global(svg) {
Expand Down

0 comments on commit 70ed8ba

Please sign in to comment.