mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
0765cf5955
- Joplin Server: Adds support for sharing a notebook - Desktop: Adds support for sharing a notebook with Joplin Server - Mobile: Adds support for reading and writing to a shared notebook (not possible to share a notebook) - Cli: Adds support for reading and writing to a shared notebook (not possible to share a notebook)
12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const StyledFormLabel = styled.div`
|
|
font-size: ${props => props.theme.fontSize * 1.083333}px;
|
|
color: ${props => props.theme.color};
|
|
font-family: ${props => props.theme.fontFamily};
|
|
font-weight: 500;
|
|
margin-bottom: ${props => props.theme.mainPadding / 2}px;
|
|
`;
|
|
|
|
export default StyledFormLabel;
|