turbowrap-issue-widget 0.1.1 → 0.1.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.
@@ -51,7 +51,7 @@ var IssueWidget=function(aA){"use strict";var Wc=Object.defineProperty;var Yc=(a
51
51
  .iw-trigger {
52
52
  position: fixed;
53
53
  z-index: 2147483647;
54
- padding: 14px 24px;
54
+ padding: 14px;
55
55
  border-radius: 50px;
56
56
  background: linear-gradient(135deg, var(--iw-accent) 0%, #8b5cf6 100%);
57
57
  color: white;
@@ -63,15 +63,30 @@ var IssueWidget=function(aA){"use strict";var Wc=Object.defineProperty;var Yc=(a
63
63
  font-weight: 500;
64
64
  display: flex;
65
65
  align-items: center;
66
- gap: 8px;
67
- transition: all 0.2s ease;
66
+ gap: 0;
67
+ overflow: hidden;
68
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
69
+ }
70
+
71
+ .iw-trigger span {
72
+ max-width: 0;
73
+ opacity: 0;
74
+ white-space: nowrap;
75
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
68
76
  }
69
77
 
70
78
  .iw-trigger:hover {
79
+ padding: 14px 20px;
80
+ gap: 8px;
71
81
  transform: translateY(-2px);
72
82
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
73
83
  }
74
84
 
85
+ .iw-trigger:hover span {
86
+ max-width: 150px;
87
+ opacity: 1;
88
+ }
89
+
75
90
  .iw-trigger.bottom-right {
76
91
  bottom: 24px;
77
92
  right: 24px;