Skip to content

Commit

Permalink
Merge pull request #972 from joachimschmidt557/css-progress-buttons-h…
Browse files Browse the repository at this point in the history
…over

Enlarge progress buttons when hovering
  • Loading branch information
jameshadfield authored Mar 22, 2020
2 parents b79aaff + c725804 commit 09ea95e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/narrative/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,16 @@ export const ProgressButton = styled.div`
background: #74a9cf;
border-radius: 50%;
cursor: pointer;
transition: transform .1s;
// BEGIN: mitigate ie flexbug-15: https://github.com/philipwalton/flexbugs#flexbug-15
align-self: center;
margin: auto;
// END mitigate ie flexbug-15
&:hover {
transform: scale(3);
}
`;

const baseBannerStyles = css`
Expand Down

0 comments on commit 09ea95e

Please sign in to comment.