Add bolilerplate sass for Kibana core (#21185) (#21257)

* Add bolilerplate sass for Kibana core
This commit is contained in:
dave.snider@gmail.com 2018-07-26 23:40:16 -07:00 committed by GitHub
parent 86aa90a337
commit 44e4452056
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View file

@ -42,3 +42,4 @@ package-lock.json
.vscode
npm-debug.log*
.tern-project
index.css

View file

@ -68,6 +68,7 @@ export default function (kibana) {
listed: false,
description: 'the kibana you know and love',
main: 'plugins/kibana/kibana',
styleSheetPath: `${__dirname}/public/index.scss`,
},
links: [

View file

@ -0,0 +1 @@
@import '../../../../src/ui/public/styles/styling_constants';

View file

@ -0,0 +1,6 @@
// EUI global scope
@import '../../../../node_modules/@elastic/eui/src/themes/k6/k6_globals';
@import '../../../../node_modules/@elastic/eui/src/themes/k6/k6_colors_light';
@import '../../../../node_modules/@elastic/eui/src/global_styling/functions/index';
@import '../../../../node_modules/@elastic/eui/src/global_styling/variables/index';
@import '../../../../node_modules/@elastic/eui/src/global_styling/mixins/index';