1234567891011121314151617181920212223242526272829303132 |
- // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
-
- //
- // Office UI Fabric
- // --------------------------------------------------
- // Fluid 12-column grids for small, medium, and large devices
-
- @import "Fabric.Grid";
-
- //== Grid container (same for all sizes)
- //
- .ms-Grid {
- @include ms-Grid;
- }
-
- //== Grid rows (pull first and last column out)
- //
- .ms-Grid-row {
- @include ms-Grid-row;
- }
-
- //== Grid cells
- //
- .ms-Grid-col {
- @include ms-Grid-col;
- }
-
- // For nested grids (a grid inside a column), removing the padding
- // so that the nested grid's columns go to the edge of the parent's.
- .ms-Grid-col .ms-Grid {
- padding: 0;
- }
|