zepio/doczrc.js

30 lines
725 B
JavaScript
Raw Normal View History

2018-11-26 18:52:29 -08:00
/* eslint-disable import/no-extraneous-dependencies */
import { css } from 'docz-plugin-css';
export default {
title: 'Zcash Foundation',
description: 'Zcash Foundation User Interface Styleguide',
2018-11-26 18:52:29 -08:00
plugins: [css()],
2018-12-05 10:12:04 -08:00
htmlContext: {
head: {
links: [
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=PT+Sans:400,700',
},
2019-01-10 09:50:27 -08:00
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Source+Code+Pro',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,700',
},
2018-12-05 10:12:04 -08:00
],
},
2018-12-20 07:03:23 -08:00
body: {
raw: '<div id="modal-root" />',
},
2018-12-05 10:12:04 -08:00
},
2018-11-26 18:52:29 -08:00
};