33 lines
473 B
SCSS
33 lines
473 B
SCSS
|
|
// 信息窗体样式
|
|
.map-info-window {
|
|
padding: 5px;
|
|
font-size: 12px;
|
|
|
|
h4 {
|
|
margin: 0 0 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.info-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.info-action {
|
|
color: #409eff;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
color: #66b1ff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.device-list-container {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|