@redseed/redseed-ui-vue3 4.1.0 → 4.1.1

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": "@redseed/redseed-ui-vue3",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",
@@ -9,15 +9,15 @@ import ButtonSlot from './ButtonSlot.vue'
9
9
  <style lang="scss" scoped>
10
10
  .rsui-button-tertiary {
11
11
  // default colors
12
- @apply text-rsui-grey-700 bg-white border-transparent;
12
+ @apply text-rsui-grey-700 bg-transparent border-transparent;
13
13
  // default hover state
14
14
  @apply hover:text-rsui-grey-900 hover:bg-rsui-grey-200 hover:border-transparent;
15
15
  // default focus state
16
16
  @apply focus-visible:ring-rsui-grey-400 focus-visible:border-transparent;
17
17
  // default active state
18
- @apply active:bg-white active:border-transparent;
18
+ @apply active:bg-transparent active:border-transparent;
19
19
  // default disabled state
20
- @apply disabled:bg-white disabled:border-transparent disabled:text-rsui-grey-400;
21
- @apply disabled:active:bg-white disabled:active:border-transparent;
20
+ @apply disabled:bg-transparent disabled:border-transparent disabled:text-rsui-grey-400;
21
+ @apply disabled:active:bg-transparent disabled:active:border-transparent;
22
22
  }
23
23
  </style>