@beastmode-develeap/beastmode 0.1.140 → 0.1.141
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/dist/web/board.html +12 -10
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/web/board.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260424-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260424-142735-a5ab479";</script>
|
|
19
19
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
20
20
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
21
21
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
@@ -166,9 +166,9 @@ body {
|
|
|
166
166
|
-moz-osx-font-smoothing: grayscale;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
::-webkit-scrollbar { width:
|
|
169
|
+
::-webkit-scrollbar { width: 10px; height: 10px; }
|
|
170
170
|
::-webkit-scrollbar-track { background: transparent; }
|
|
171
|
-
::-webkit-scrollbar-thumb { background: var(--border); border-radius:
|
|
171
|
+
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
|
|
172
172
|
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
|
|
173
173
|
|
|
174
174
|
::selection {
|
|
@@ -383,7 +383,6 @@ body {
|
|
|
383
383
|
min-height: 100vh;
|
|
384
384
|
overflow-x: hidden;
|
|
385
385
|
overflow-y: auto;
|
|
386
|
-
scroll-behavior: smooth;
|
|
387
386
|
}
|
|
388
387
|
|
|
389
388
|
.kanban-wrapper {
|
|
@@ -419,20 +418,23 @@ body {
|
|
|
419
418
|
}
|
|
420
419
|
.kanban-scroll-track {
|
|
421
420
|
flex: 1;
|
|
422
|
-
height:
|
|
421
|
+
height: 10px;
|
|
423
422
|
background: var(--surface-elevated, var(--bg-card));
|
|
424
|
-
border-radius:
|
|
423
|
+
border-radius: 5px;
|
|
425
424
|
position: relative;
|
|
426
425
|
cursor: pointer;
|
|
427
426
|
}
|
|
428
427
|
.kanban-scroll-thumb {
|
|
429
428
|
height: 100%;
|
|
430
429
|
background: var(--text-muted);
|
|
431
|
-
border-radius:
|
|
430
|
+
border-radius: 5px;
|
|
432
431
|
position: absolute;
|
|
433
432
|
left: 0;
|
|
434
433
|
transition: background 0.15s;
|
|
435
434
|
min-width: 30px;
|
|
435
|
+
padding: 8px 0;
|
|
436
|
+
margin: -8px 0;
|
|
437
|
+
background-clip: content-box;
|
|
436
438
|
}
|
|
437
439
|
.kanban-scroll-thumb { cursor: grab; }
|
|
438
440
|
.kanban-scroll-thumb:hover { background: var(--accent); }
|
|
@@ -446,7 +448,6 @@ body {
|
|
|
446
448
|
cursor: grab;
|
|
447
449
|
-webkit-overflow-scrolling: touch;
|
|
448
450
|
}
|
|
449
|
-
}
|
|
450
451
|
.kanban::-webkit-scrollbar-corner { background: var(--bg-card); }
|
|
451
452
|
|
|
452
453
|
.page-content {
|
|
@@ -1078,7 +1079,7 @@ input[type="range"]::-webkit-slider-thumb {
|
|
|
1078
1079
|
}
|
|
1079
1080
|
|
|
1080
1081
|
.kanban-items::-webkit-scrollbar {
|
|
1081
|
-
width:
|
|
1082
|
+
width: 10px;
|
|
1082
1083
|
}
|
|
1083
1084
|
|
|
1084
1085
|
.kanban-items::-webkit-scrollbar-track {
|
|
@@ -1087,7 +1088,7 @@ input[type="range"]::-webkit-slider-thumb {
|
|
|
1087
1088
|
|
|
1088
1089
|
.kanban-items::-webkit-scrollbar-thumb {
|
|
1089
1090
|
background: rgba(255, 255, 255, 0.15);
|
|
1090
|
-
border-radius:
|
|
1091
|
+
border-radius: 5px;
|
|
1091
1092
|
}
|
|
1092
1093
|
|
|
1093
1094
|
.kanban-items::-webkit-scrollbar-thumb:hover {
|
|
@@ -1100,6 +1101,7 @@ input[type="range"]::-webkit-slider-thumb {
|
|
|
1100
1101
|
|
|
1101
1102
|
[data-theme="light"] .kanban-items::-webkit-scrollbar-thumb {
|
|
1102
1103
|
background: rgba(0, 0, 0, 0.15);
|
|
1104
|
+
border-radius: 5px;
|
|
1103
1105
|
}
|
|
1104
1106
|
|
|
1105
1107
|
[data-theme="light"] .kanban-items::-webkit-scrollbar-thumb:hover {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
a5ab479c54d346ad77c2fcb49643f9568f30f993
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260424-
|
|
1
|
+
20260424-142735-a5ab479
|