@cloudron/pankow 3.2.5 → 3.2.6

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.
@@ -45,7 +45,6 @@ const normalizedValue = computed(() => {
45
45
  .pankow-progress-bar {
46
46
  position: relative;
47
47
  font-weight: 700;
48
- min-height: 12px;
49
48
  user-select: none;
50
49
  border-radius: var(--pankow-border-radius);
51
50
  display: block;
@@ -56,6 +55,7 @@ const normalizedValue = computed(() => {
56
55
  }
57
56
 
58
57
  .pankow-progress-bar-filled {
58
+ position: relative;
59
59
  background-color: var(--pankow-color-primary);
60
60
  transition: width 250ms;
61
61
  white-space: nowrap;
@@ -69,20 +69,18 @@ const normalizedValue = computed(() => {
69
69
  display: inline-block;
70
70
  position: absolute;
71
71
  overflow: hidden;
72
- border-radius: var(--pankow-border-radius);
73
72
  }
74
73
 
75
74
  .pankow-progress-bar-glow::after {
76
75
  content: '';
77
- width: 30%;
76
+ width: max(100px, 30%);
78
77
  height: 100%;
79
- background: linear-gradient(to right, transparent, rgba(255,255,255,0.7));
78
+ background: linear-gradient(to right, transparent, rgba(255,255,255,0.7), transparent 90%);
80
79
  position: absolute;
81
80
  top: 0;
82
81
  left: 0;
83
82
  box-sizing: border-box;
84
83
  animation: pankow-progress-bar-indeterminate-animation 1.5s ease-in-out infinite;
85
- border-radius: var(--pankow-border-radius);
86
84
  }
87
85
 
88
86
  .pankow-progress-bar-indeterminate {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudron/pankow",
3
3
  "private": false,
4
- "version": "3.2.5",
4
+ "version": "3.2.6",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {