github-issue-tower-defence-management 1.101.6 → 1.101.7
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/CHANGELOG.md +7 -0
- package/bin/adapter/entry-points/console/ui-dist/assets/index--7aFZNg9.js +101 -0
- package/bin/adapter/entry-points/console/ui-dist/assets/index-ES6SLB1Y.css +1 -0
- package/bin/adapter/entry-points/console/ui-dist/index.html +2 -2
- package/package.json +1 -1
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemDetail.tsx +139 -145
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleOperations.test.ts +2 -2
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleOperations.ts +2 -4
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsoleItemDetailContainer.tsx +1 -4
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.test.tsx +0 -97
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.tsx +0 -39
- package/src/adapter/entry-points/console/ui/src/index.css +6 -16
- package/src/adapter/entry-points/console/ui-dist/assets/index--7aFZNg9.js +101 -0
- package/src/adapter/entry-points/console/ui-dist/assets/index-ES6SLB1Y.css +1 -0
- package/src/adapter/entry-points/console/ui-dist/index.html +2 -2
- package/bin/adapter/entry-points/console/ui-dist/assets/index-D4zghbcI.css +0 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/index-DX0mapkS.js +0 -101
- package/src/adapter/entry-points/console/ui-dist/assets/index-D4zghbcI.css +0 -1
- package/src/adapter/entry-points/console/ui-dist/assets/index-DX0mapkS.js +0 -101
|
@@ -33,10 +33,8 @@ body {
|
|
|
33
33
|
.console-app {
|
|
34
34
|
max-width: 920px;
|
|
35
35
|
margin: 0 auto;
|
|
36
|
-
height: 100dvh;
|
|
37
36
|
display: flex;
|
|
38
37
|
flex-direction: column;
|
|
39
|
-
min-height: 0;
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
.console-tabbar {
|
|
@@ -116,10 +114,6 @@ body {
|
|
|
116
114
|
list-style: none;
|
|
117
115
|
margin: 0;
|
|
118
116
|
padding: 12px 18px 18px;
|
|
119
|
-
flex: 1;
|
|
120
|
-
min-height: 0;
|
|
121
|
-
overflow-y: auto;
|
|
122
|
-
-webkit-overflow-scrolling: touch;
|
|
123
117
|
}
|
|
124
118
|
|
|
125
119
|
.console-list-group {
|
|
@@ -264,10 +258,6 @@ body {
|
|
|
264
258
|
}
|
|
265
259
|
|
|
266
260
|
.console-detail {
|
|
267
|
-
flex: 1;
|
|
268
|
-
min-height: 0;
|
|
269
|
-
overflow-y: auto;
|
|
270
|
-
-webkit-overflow-scrolling: touch;
|
|
271
261
|
display: flex;
|
|
272
262
|
flex-direction: column;
|
|
273
263
|
gap: 12px;
|
|
@@ -473,11 +463,14 @@ body {
|
|
|
473
463
|
}
|
|
474
464
|
|
|
475
465
|
.console-actionbar {
|
|
476
|
-
|
|
466
|
+
position: fixed;
|
|
467
|
+
bottom: 0;
|
|
468
|
+
left: 0;
|
|
469
|
+
right: 0;
|
|
470
|
+
z-index: 100;
|
|
477
471
|
background: #161b22;
|
|
478
472
|
border-top: 2px solid #30363d;
|
|
479
473
|
padding: 10px 16px;
|
|
480
|
-
padding-bottom: calc(10px + env(safe-area-inset-bottom));
|
|
481
474
|
}
|
|
482
475
|
|
|
483
476
|
.console-operation-bar {
|
|
@@ -568,10 +561,7 @@ body {
|
|
|
568
561
|
}
|
|
569
562
|
|
|
570
563
|
.console-detail-screen {
|
|
571
|
-
|
|
572
|
-
min-height: 0;
|
|
573
|
-
display: flex;
|
|
574
|
-
flex-direction: column;
|
|
564
|
+
padding-bottom: 140px;
|
|
575
565
|
}
|
|
576
566
|
|
|
577
567
|
.console-panel-open-link {
|