@uxda/appkit 1.2.28 → 1.2.30

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/appkit.css CHANGED
@@ -850,10 +850,12 @@ page {
850
850
  }
851
851
  .operation-box .operation-list {
852
852
  flex: 1;
853
- margin: 0 15px;
853
+ width: 100%;
854
854
  }
855
855
  .operation-box .operation-list .operation-scroll {
856
856
  height: calc(100vh - 130px);
857
+ padding: 0 15px;
858
+ box-sizing: border-box;
857
859
  }
858
860
  .operation-box .operation-list .box-detail .title {
859
861
  line-height: 22px;
@@ -866,7 +868,7 @@ page {
866
868
  .operation-box .operation-list .box-detail .item {
867
869
  border-radius: 5px;
868
870
  background: rgba(255, 255, 255, 0.5);
869
- box-shadow: 0px 2.5px 9.5px 2px rgba(0, 0, 0, 0.05);
871
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
870
872
  border-radius: 5px;
871
873
  padding: 12px 10px;
872
874
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxda/appkit",
3
- "version": "1.2.28",
3
+ "version": "1.2.30",
4
4
  "description": "小程序应用开发包",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.ts",
@@ -612,9 +612,11 @@ onMounted(() => {
612
612
  }
613
613
  .operation-list {
614
614
  flex: 1;
615
- margin: 0 15px;
615
+ width: 100%;
616
616
  .operation-scroll{
617
- height: calc(100vh - 130px)
617
+ height: calc(100vh - 130px);
618
+ padding: 0 15px;
619
+ box-sizing: border-box;
618
620
  }
619
621
  .box {
620
622
  &-detail {
@@ -629,7 +631,7 @@ onMounted(() => {
629
631
  .item {
630
632
  border-radius: 5px;
631
633
  background: rgba(255, 255, 255, 0.5);
632
- box-shadow: 0px 2.5px 9.5px 2px rgba(0, 0, 0, 0.05);
634
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
633
635
  border-radius: 5px;
634
636
  padding: 12px 10px;
635
637
  display: flex;