mirror of
https://github.com/laurent22/joplin.git
synced 2025-03-06 15:36:49 +02:00
13 lines
455 B
TypeScript
13 lines
455 B
TypeScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const StyledMessage = styled.div`
|
||
|
border-radius: 3px;
|
||
|
background-color: ${props => props.type === 'error' ? props.theme.warningBackgroundColor : 'transparent'};
|
||
|
font-size: ${props => props.theme.fontSize}px;
|
||
|
color: ${props => props.theme.color};
|
||
|
font-family: ${props => props.theme.fontFamily};
|
||
|
padding: ${props => props.type === 'error' ? props.theme.mainPadding : '0'}px;
|
||
|
`;
|
||
|
|
||
|
export default StyledMessage;
|