Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334
  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. //== Grid container (same for all sizes)
  7. //
  8. @mixin ms-Grid {
  9. @include ms-u-borderBox;
  10. @include ms-u-clearfix;
  11. padding: 0 8px;
  12. }
  13. //== Grid rows (pull first and last column out)
  14. //
  15. @mixin ms-Grid-row {
  16. margin: 0 -8px;
  17. @include ms-u-borderBox;
  18. @include ms-u-clearfix;
  19. }
  20. //== Grid cells
  21. //
  22. @mixin ms-Grid-col {
  23. position: relative;
  24. min-height: 1px;
  25. padding-left: 8px;
  26. padding-right: 8px;
  27. @include ms-u-borderBox;
  28. float: left;
  29. }