mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
76d195cd39
GitOrigin-RevId: 61b69b5fd178dd4f5ab26858c434f959dfc410bc
15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import { addons } from '@storybook/addons'
|
|
import { create } from '@storybook/theming'
|
|
|
|
import './manager.css'
|
|
|
|
import brandImage from '../public/img/ol-brand/overleaf.svg'
|
|
|
|
const theme = create({
|
|
base: 'light',
|
|
brandTitle: 'Overleaf',
|
|
brandUrl: 'https://www.overleaf.com',
|
|
brandImage,
|
|
})
|
|
|
|
addons.setConfig({ theme })
|