index.vue 431 Bytes
Newer Older
xulili's avatar
xulili committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<template>
  <div class="alarm-notify">
    <p>温馨提示:此处为告警通知栏</p>
  </div>
</template>

<script>
  export default {

  }
</script>

<style lang="scss">
.alarm-notify{
  width: 100%;
  height: 32px;
  background-color: #fff;
  height:32px;
  box-shadow:0px 2px 4px 0px rgba(221,221,221,1);
  p{
    padding-left: 36px;
    font-size:12px;
    color:rgba(102,102,102,1);
    line-height:12px;
  }
}
</style>