@mapbox/assembly 1.9.2 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/assembly.css CHANGED
@@ -2594,6 +2594,8 @@ textarea {
2594
2594
  * <div class='cursor-notallowed'>cursor-notallowed</div>
2595
2595
  * <div class='cursor-grab'>cursor-grab</div>
2596
2596
  * <div class='cursor-grabbing'>cursor-grabbing</div>
2597
+ * <div class='cursor-col-resize'>cursor-col-resize</div>
2598
+ * <div class='cursor-row-resize'>cursor-row-resize</div>
2597
2599
  */
2598
2600
  .cursor-default { cursor: default !important; }
2599
2601
  .cursor-pointer { cursor: pointer !important; }
@@ -2602,6 +2604,8 @@ textarea {
2602
2604
  .cursor-notallowed { cursor: not-allowed !important; }
2603
2605
  .cursor-grab { cursor: grab !important; }
2604
2606
  .cursor-grabbing { cursor: grabbing !important; }
2607
+ .cursor-col-resize { cursor: col-resize !important; }
2608
+ .cursor-row-resize { cursor: row-resize !important; }
2605
2609
 
2606
2610
  /** @endgroup */
2607
2611
 
@@ -2850,7 +2854,8 @@ textarea {
2850
2854
  */
2851
2855
 
2852
2856
  /**
2853
- * Set `auto` margins on left and right. This pattern is useful for horizontally centering block elements or aligning block to the start or end.
2857
+ * Set `auto` margins on left and right. This pattern is useful for horizontally centering block elements
2858
+ * or aligning block elements to the start or end of their container.
2854
2859
  *
2855
2860
  * @example
2856
2861
  * <div class='mx-auto w60 bg-darken10'>mx-auto</div>