Created
June 26, 2020 03:45
-
-
Save adamthewan/11af76e766308c46b11b6203cfef33a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from "styled-components" | |
const Bubble = styled(div)` | |
border-radius: 20px; | |
padding: 8px 15px; | |
margin-top: 5px; | |
margin-bottom: 5px; | |
display: inline-block; | |
margin-right: 25%; | |
background-color: #eee; | |
position: relative; | |
&:last-child { | |
:before { | |
content: ""; | |
position: absolute; | |
z-index: 0; | |
bottom: 0; | |
left: -7px; | |
height: 20px; | |
width: 20px; | |
background: #eee; | |
border-bottom-right-radius: 15px; | |
} | |
:after { | |
content: ""; | |
position: absolute; | |
z-index: 1; | |
bottom: 0; | |
left: -10px; | |
width: 10px; | |
height: 20px; | |
background: white; | |
border-bottom-right-radius: 10px; | |
} | |
} | |
transition: transform 0.2s ease-in-out; | |
:hover { | |
transform: translate(0, -2px) scale(1.01); | |
} | |
position: relative; | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment