UNPKG

contiago-toolbar

Version:

One of the options for outputting content from contiago xml-server

21 lines (19 loc) 388 B
import styled from 'styled-components'; export default styled.div` width: ${(props) => props.size}; height: ${(props) => props.size}; margin: 0.5vw; margin-top: 0; margin-bottom: 1vw; background-color: #e7e7e7; &:hover { background-color: #bababa; cursor: pointer; } &:hover :first-child{ display: none; } &:hover :last-child{ display: flex; } `;