@mapbox/assembly 1.9.1 → 1.9.2

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
@@ -2850,13 +2850,17 @@ textarea {
2850
2850
  */
2851
2851
 
2852
2852
  /**
2853
- * Set `auto` margins on left and right. This pattern is useful for horizontally centering block elements.
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.
2854
2854
  *
2855
2855
  * @example
2856
2856
  * <div class='mx-auto w60 bg-darken10'>mx-auto</div>
2857
+ * <div class='ml-auto w60 bg-darken10'>ml-auto</div>
2858
+ * <div class='mr-auto w60 bg-darken10'>mr-auto</div>
2857
2859
  * @memberof Margins
2858
2860
  */
2859
2861
  .mx-auto { margin-left: auto !important; margin-right: auto !important; }
2862
+ .ml-auto { margin-left: auto !important; }
2863
+ .mr-auto { margin-right: auto !important; }
2860
2864
 
2861
2865
  /**
2862
2866
  * All padding classes fit the following pattern: `m<side><size>`.