UNPKG

contiago-toolbar

Version:

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

20 lines (18 loc) 387 B
import styled from 'styled-components'; export default styled.div` display: flex; align-items: center; padding: 0.5vw; height: 5vw; width: 27.5vw; background-color: #e7e7e7; color: #7e7e7e; &:hover { background-color: ${(props) => props.theme.mainColor}; color: white; cursor: pointer; } &:hover > :last-child { border-left: 1px solid white; } `;