Add bolilerplate sass for Kibana core (#21185)

* Add bolilerplate sass for Kibana core
This commit is contained in:
dave.snider@gmail.com 2018-07-25 18:23:04 -07:00 committed by GitHub
parent 72b779c350
commit 58eefb88b8
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

@ -66,6 +66,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';