@snyk-mktg/brand-ui 2.3.12 → 2.3.13

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.
@@ -11,49 +11,13 @@
11
11
  max-width: 100vw;
12
12
  overflow: visible;
13
13
  &.evo-logo {
14
- position: absolute;
15
- opacity: 0.05;
16
- transform: scale(1);
17
- width: brandui-col-spacing(16);
18
- background: transparent url('#{$brandui-images}decorations/evo-logo-decoration.svg') center no-repeat;
19
- background-size: contain;
20
- mix-blend-mode: screen;
21
- z-index: -1;
22
- padding-bottom: 28rem;
23
-
24
- &-top-right {
25
- top: 0;
26
- right: -40rem;
27
- }
28
- &-bottom-right {
29
- bottom: -5rem;
30
- right: -40rem;
31
- }
32
- &-top-left {
33
- top: 0;
34
- left: -40rem;
35
- transform: rotate(180deg);
36
- }
37
- &-bottom-left {
38
- bottom: -5rem;
39
- left: -40rem;
40
- transform: rotate(180deg);
41
- }
42
-
43
- &-center {
44
- left: 0;
45
- right: 0;
46
- top: -90%;
47
- bottom: 0;
48
- }
49
-
50
14
  &-png {
51
15
  position: absolute;
52
16
  margin: auto;
53
17
  opacity: 1;
54
18
  transform: scale(1);
55
19
  width: brandui-col-spacing(16);
56
- background: transparent url('#{$brandui-images}decorations/evo-decoration-logo-png-alt.png');
20
+ background: transparent url('#{$brandui-images}decorations/evo-decoration-logo-png.png');
57
21
  background-position: center;
58
22
  background-repeat: no-repeat;
59
23
  background-size: contain;
@@ -1,6 +1,7 @@
1
1
  @use '../../../base/decorations/glows' as *;
2
2
  @use '../../../base/mixins/page-theme' as theme;
3
3
  @use '../../../base/mixins/breakpoints' as break;
4
+ @use '../../../base/mixins/accessibility' as a11y;
4
5
  @use '../../../base/functions' as *;
5
6
 
6
7
  .decoration-glow {
@@ -43,8 +44,8 @@
43
44
  position: fixed;
44
45
  top: 0;
45
46
  left: 0;
46
- width: 500px;
47
- height: 500px;
47
+ width: 400px;
48
+ height: 400px;
48
49
  border-radius: 50%;
49
50
  /* Center the glow on the cursor's actual position */
50
51
  transform: translate(-50%, -50%);
@@ -55,6 +56,9 @@
55
56
  z-index: 9999;
56
57
  transition: transform 0.2s ease-out; /* Optional: smooths movement slightly */
57
58
 
58
- background: radial-gradient(circle, RGBA(brandui-rgb-labels(action-secondary), 0.1) 0%, RGBA(brandui-rgb-labels(action-secondary), 0) 80%);
59
+ background: radial-gradient(circle, RGBA(brandui-rgb-labels(action-secondary), 0.2) 0%, RGBA(brandui-rgb-labels(action-secondary), 0) 70%);
60
+ @include a11y.reduced-motion {
61
+ display: none;
62
+ }
59
63
  }
60
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snyk-mktg/brand-ui",
3
- "version": "2.3.12",
3
+ "version": "2.3.13",
4
4
  "description": "The official style library for Snyk’s BrandUI Design System",
5
5
  "scripts": {
6
6
  "dev:css": "gulp devCss",