Files
outline/app/components/Editor/components/InlineCode.js
2017-11-26 20:34:45 -08:00

15 lines
305 B
JavaScript

// @flow
import styled from 'styled-components';
import { color } from 'shared/styles/constants';
const InlineCode = styled.code.attrs({
spellCheck: false,
})`
padding: 0.25em;
background: ${color.smoke};
border-radius: 4px;
border: 1px solid ${color.smokeDark};
`;
export default InlineCode;