UNPKG

1.01 kBSCSSView Raw
1// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
2
3//
4// Office UI Fabric
5// Core styles scoped to the current major version of Fabric
6
7// Variable is set during gulp task as comma seperated list. i.e. 5,1,0
8$ms-fabric-version: 11,0,0;
9
10@import './References';
11@import './mixins/ScopedStyles.Mixins';
12
13// Sets a global flag to enable scoped styles within certain files
14$do-scope-styles: true;
15
16// Scope all core styles under a helper class for the current major version.
17// This produces styles of the form .ms-Fabric-{version #} .ms-font-m.
18
19@include scope-fabric {
20 @import './Animation';
21 @import './BrandIcon';
22 @import './Color';
23 @import './Font';
24 @import './Grid';
25 @import './Icon';
26 @import './Responsive';
27 @import './Utility';
28 @import './Wrapper';
29}
30
31// @font-face definitions do not need to be scoped
32 @import './Font.Definitions';
33 @import './Icon.Definitions';