|
@@ -53,7 +53,7 @@
|
|
|
width:100%;
|
|
|
height: 360px;
|
|
|
display: flex;
|
|
|
- direction: column;
|
|
|
+ flex-direction: column;
|
|
|
overflow: hidden;
|
|
|
margin-top: 10px;
|
|
|
}
|
|
@@ -71,24 +71,31 @@
|
|
|
}
|
|
|
.bleDevices .devList .devItem{
|
|
|
width: 100%;
|
|
|
- height: 36px;
|
|
|
+ height: 70px;
|
|
|
border: 1px solid gray;
|
|
|
margin-bottom: 10px;
|
|
|
border-radius: 3px;
|
|
|
display: flex;
|
|
|
padding: 0 8px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.bleDevices .devList .devItem .devInfo .name,.devId{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
-
|
|
|
.bleDevices .devList .devItem .devInfo{
|
|
|
width: 70%;
|
|
|
}
|
|
|
|
|
|
.bleDevices .devList .devItem .devInfo .name{
|
|
|
font-size: 18px;
|
|
|
+ height: 35px;
|
|
|
}
|
|
|
|
|
|
.bleDevices .devList .devItem .devInfo .devId{
|
|
|
- font-size: 14px;
|
|
|
+ font-size: 12px;
|
|
|
+ height: 30px;
|
|
|
}
|
|
|
|
|
|
|