draconiandev/website

View on GitHub
components/elements/Ol.js

Summary

Maintainability
A
0 mins
Test Coverage
import styled from 'styled-components';

import { spacing } from '../../styles/vars';

const Ol = styled.ol`
  margin: 0 0 ${spacing.normal} ${spacing.large};
  list-style-type: disc;
  p {
    margin-bottom: 0;
  }
`;

export default Ol;