No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fabric.Grid.Output.scss 711B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
  2. //
  3. // Office UI Fabric
  4. // --------------------------------------------------
  5. // Fluid 12-column grids for small, medium, and large devices
  6. @import "Fabric.Grid";
  7. //== Grid container (same for all sizes)
  8. //
  9. .ms-Grid {
  10. @include ms-Grid;
  11. }
  12. //== Grid rows (pull first and last column out)
  13. //
  14. .ms-Grid-row {
  15. @include ms-Grid-row;
  16. }
  17. //== Grid cells
  18. //
  19. .ms-Grid-col {
  20. @include ms-Grid-col;
  21. }
  22. // For nested grids (a grid inside a column), removing the padding
  23. // so that the nested grid's columns go to the edge of the parent's.
  24. .ms-Grid-col .ms-Grid {
  25. padding: 0;
  26. }