strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
46 lines (43 loc) • 819 B
JavaScript
import styled from 'styled-components';
const RoundCTA = styled.div`
height: 31px;
width: 31px;
border-radius: 50%;
background-color: #f2f3f4;
border: 2px solid #ffffff;
cursor: pointer;
display: flex;
z-index: 9;
svg {
font-size: 10px;
line-height: 29px;
margin: auto;
}
&:not(.arrow-btn) {
position: absolute;
top: -16px;
right: 10px;
transition: all 200ms ease-in;
&:hover {
background-color: #faa684;
color: #f64d0a;
}
}
&.arrow-btn {
height: 22px;
width: 22px;
background-color: #ffffff;
border: 2px solid #ffffff;
svg {
font-size: 10px;
line-height: 22px;
}
&:hover {
background-color: #f2f3f4;
}
&.arrow-down {
transform: rotate(180deg);
}
}
`;
export default RoundCTA;