blob: 855c9d19e1e2211ff7c51d477e9049432df9b17e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@import "../base/base.scss";
@import "common/common.scss";
@import "components/components.scss";
@import "compound/compound.scss";
/* Temporarily moved here to make drag'n'drop work before #10384 is fixed */
.v-drag-element {
font-family: $chameleon-font-family;
font-size: $chameleon-font-size;
line-height: $chameleon-line-height;
color: #222;
}
@mixin chameleon {
// TODO move this?
@include base;
// TODO each
@include chameleon-app;
@include chameleon-common;
@include chameleon-components;
@include chameleon-compound;
}
|