1234567891011121314151617181920212223 |
- // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
-
- //
- // Office UI Fabric
- // --------------------------------------------------
- // Utility classes and mixins used throughout Fabric.
-
- @import "Fabric.Utilities";
-
- // The best box is a border box.
- .ms-u-borderBox, .ms-u-borderBox:before, .ms-u-borderBox:after {
- @include ms-u-borderBox;
- }
-
- // Ensures the block expands to the full height to enclose its floated childen.
- .ms-u-clearfix {
- @include ms-u-clearfix;
- }
-
- // Basic border-box, margin, and padding reset.
- .ms-u-normalize {
- @include ms-u-normalize;
- }
|