@gitbutler/design-core 1.3.2 → 1.3.3

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": "@gitbutler/design-core",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "type": "module",
5
5
  "description": "Design tokens for GitButler applications",
6
6
  "keywords": [
package/styles/reset.css CHANGED
@@ -219,6 +219,7 @@
219
219
 
220
220
  [role="button"],
221
221
  button {
222
+ text-align: left;
222
223
  cursor: pointer;
223
224
  }
224
225
 
@@ -195,11 +195,8 @@ pre {
195
195
  }
196
196
 
197
197
  /* ACCESSIBILITY */
198
- .focus-state {
199
- outline: none;
200
- outline-offset: 2px;
201
-
202
- &:focus-visible {
203
- outline: 0.094rem solid var(--focus-color);
204
- }
198
+ /* Focus outline for keyboard navigation */
199
+ .focus-state:focus-visible {
200
+ outline: 2px solid var(--clr-theme-pop-element);
201
+ outline-offset: -2px;
205
202
  }