@redocly/portal-plugin-async-api
Version: 
Async API plugin for Redocly products
59 lines (50 loc) • 1.39 kB
JavaScript
import styled from 'styled-components';
export const StylesProvider = styled.div `
  margin: auto;
  padding: 0 var(--spacing-xl);
  max-width: var(--layout-stacked-large-max-width);
  .aui-root {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-regular);
    background: var(--bg-color);
    color: var(--text-color-primary);
    margin: 0 -2rem;
  }
  .aui-root .text-gray-700,
  .aui-root .prose {
    color: var(--text-color-primary);
  }
  .aui-root .bg-white,
  .aui-root .bg-gray-100,
  .aui-root .bg-gray-200 {
    background: var(--bg-color);
  }
  .aui-root div.border {
    border: solid 1px;
    border-color: var(--border-color-primary);
  }
  .aui-root .rounded {
    border-radius: var(--button-border-radius);
  }
  .aui-root .shadow {
    box-shadow: none;
  }
  .aui-root .text-4xl {
    margin: var(--h1-margin-top) 0 var(--h1-margin-bottom);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    font-family: var(--h1-font-family);
    line-height: var(--h1-line-height);
    color: var(--h1-text-color);
    text-transform: var(--h1-text-transform);
  }
  .aui-root .prose h3 {
    color: var(--text-color-primary);
  }
  .aui-root .text-gray-800 {
    color: var(--text-color-primary);
  }
`;
//# sourceMappingURL=styles.js.map