EditorViewer.styled.ts 375 B

12345678910111213
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. background-color: ${({ theme }) => theme.viewer.wrapper.backgroundColor};
  4. padding: 8px 16px;
  5. .ace_active-line {
  6. background-color: ${({ theme }) =>
  7. theme.default.backgroundColor} !important;
  8. }
  9. .ace_line {
  10. color: ${({ theme }) => theme.viewer.wrapper.color} !important;
  11. }
  12. `;