DocSpace-client/packages/components/calendar/styled-components/Title.js

17 lines
331 B
JavaScript

import styled from "styled-components";
export const Title = styled.h2`
font-family: 'Open Sans', sans-serif, Arial;
font-weight: 700;
font-size: 21px;
line-height: 28px;
color: #555f65;
border-bottom: 1px dashed transparent;
margin: 0;
:hover {
border-bottom: 1px dashed #555f65;
cursor: pointer;
}
`;