contiago-toolbar
Version:
One of the options for outputting content from contiago xml-server
19 lines (17 loc) • 401 B
JavaScript
import styled from 'styled-components';
export default styled.div`
color: #737373;
font-size: 1.96vw;
font-family: 'Open Sans Condensed Light';
margin: 1vw 0;
max-height: 3.2vw;
max-width: 12vw;
line-height: normal;
cursor: pointer;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
&:hover {
text-decoration: underline;
}
`;