mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
e1d0f1e61c
- Make sure common styles are loaded for all components - Add icon in user menu Fixes renders of: - Language button (no top margin and button styles) - MenuPortal (no left margins) Change-Id: I98b4820b6d91d46fd27a1d433d5bacd187a7cbb0
15 lines
346 B
JavaScript
15 lines
346 B
JavaScript
import mustache from 'mustache';
|
|
import { FOOTER_TEMPLATE_DATA, FOOTER_TEMPLATE_PARTIALS,
|
|
footerTemplate } from './Footer.stories.data';
|
|
import '../resources/skins.vector.styles/Footer.less';
|
|
|
|
export default {
|
|
title: 'Footer'
|
|
};
|
|
|
|
export const footer = () => mustache.render(
|
|
footerTemplate,
|
|
FOOTER_TEMPLATE_DATA,
|
|
FOOTER_TEMPLATE_PARTIALS
|
|
);
|