@microsoft/atlas-css 3.60.0 → 3.61.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/atlas-css",
3
- "version": "3.60.0",
3
+ "version": "3.61.0",
4
4
  "description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -17,6 +17,8 @@ $textarea-success-border-color: $success !default;
17
17
 
18
18
  $textarea-focus-box-shadow-size: 0 0.125rem 0 0 !default;
19
19
 
20
+ $textarea-margin-spacing: $layout-1 !default;
21
+
20
22
  .textarea {
21
23
  @include control;
22
24
 
@@ -130,6 +132,7 @@ $textarea-divider-radius: 0.5rem !default;
130
132
  align-items: center;
131
133
  justify-content: space-between;
132
134
  outline-color: currentColor;
135
+ margin-inline-start: $textarea-margin-spacing;
133
136
  }
134
137
 
135
138
  .textarea-form-footer-divider {
@@ -145,4 +148,14 @@ $textarea-divider-radius: 0.5rem !default;
145
148
  gap: $textarea-form-gap;
146
149
  height: 100%;
147
150
  }
151
+
152
+ .textarea-form-help {
153
+ margin-inline-start: $textarea-margin-spacing;
154
+
155
+ .help {
156
+ display: flex;
157
+ align-items: center;
158
+ gap: 0.375em;
159
+ }
160
+ }
148
161
  }