This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/frontend/components/Editor/components/InlineCode.js
Tom Moor 38c8a46d32 'Copy to Clipboard' functionality (#163)
* Adds 'Copy to Clipboard' functionality to all code blocks in readOnly

* Show on hover, move to SC

* 💚

* PR feedback
2017-08-02 22:10:58 -07:00

13 lines
265 B
JavaScript

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