fix: update style for alerting detail

This commit is contained in:
Fine 2023-09-01 15:31:01 +08:00
parent b7115a4e47
commit 0a8769b7c4
2 changed files with 26 additions and 26 deletions

View File

@ -142,7 +142,7 @@ limitations under the License. -->
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import url("../components/style.scss"); @import url("./style.scss");
.tips { .tips {
width: 100%; width: 100%;
@ -150,4 +150,29 @@ limitations under the License. -->
text-align: center; text-align: center;
font-size: $font-size-normal; font-size: $font-size-normal;
} }
.alarm-detail {
max-height: 600px;
overflow: auto;
ul {
min-height: 100px;
overflow: auto;
margin-bottom: 20px;
}
li {
cursor: pointer;
> span {
width: 160px;
height: 20px;
line-height: 20px;
text-align: center;
display: inline-block;
border-bottom: 1px solid $disabled-color;
overflow: hidden;
}
}
}
</style> </style>

View File

@ -71,31 +71,6 @@
margin-bottom: 9px; margin-bottom: 9px;
} }
.alarm-detail {
max-height: 600px;
overflow: auto;
ul {
min-height: 100px;
overflow: auto;
margin-bottom: 20px;
}
li {
cursor: pointer;
> span {
width: 160px;
height: 20px;
line-height: 20px;
text-align: center;
display: inline-block;
border-bottom: 1px solid $disabled-color;
overflow: hidden;
}
}
}
.keys { .keys {
font-weight: bold; font-weight: bold;
display: inline-block; display: inline-block;