@tuya-miniapp/ark-extension-virtual-device 1.4.0-beta-7 → 1.4.0-beta-9
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/view/app.min.css +23 -0
- package/dist/view/app.min.js +1 -1
- package/dist/worker/index.js +37 -8
- package/package.json +1 -1
package/dist/view/app.min.css
CHANGED
|
@@ -44930,6 +44930,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
44930
44930
|
|
|
44931
44931
|
.dev-item-wrapper {
|
|
44932
44932
|
width: 232px;
|
|
44933
|
+
position: relative;
|
|
44933
44934
|
border-radius: 12px;
|
|
44934
44935
|
background-color: #fff;
|
|
44935
44936
|
padding: 20px;
|
|
@@ -44974,6 +44975,13 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
44974
44975
|
.dev-item-wrapper .shared {
|
|
44975
44976
|
color: #F96A62;
|
|
44976
44977
|
}
|
|
44978
|
+
.dev-item-wrapper .group {
|
|
44979
|
+
position: absolute;
|
|
44980
|
+
top: 16px;
|
|
44981
|
+
right: 16px;
|
|
44982
|
+
font-size: 13px;
|
|
44983
|
+
color: #FFA000;
|
|
44984
|
+
}
|
|
44977
44985
|
.checkedItem {
|
|
44978
44986
|
border-width: 2px;
|
|
44979
44987
|
border-color: #096dd9;
|
|
@@ -45067,3 +45075,18 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
45067
45075
|
border-bottom: 0;
|
|
45068
45076
|
}
|
|
45069
45077
|
|
|
45078
|
+
.container {
|
|
45079
|
+
display: flex;
|
|
45080
|
+
flex-direction: column;
|
|
45081
|
+
height: 100vh;
|
|
45082
|
+
width: 100vw;
|
|
45083
|
+
background-color: #f3f3f3;
|
|
45084
|
+
}
|
|
45085
|
+
.container .scroll .device-list {
|
|
45086
|
+
display: grid;
|
|
45087
|
+
grid-template-columns: repeat(auto-fill, 232px);
|
|
45088
|
+
row-gap: 10px;
|
|
45089
|
+
column-gap: 10px;
|
|
45090
|
+
padding: 16px;
|
|
45091
|
+
}
|
|
45092
|
+
|