isPauseShow.vue 608 Bytes
Newer Older
李嘉林 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 28 29 30 31
<template>
  <!-- 直播暂停 -->
  <div class="pauseShow">
    <p class="tit">主播暂时离开</p>
  </div>
</template>

<script type="text/ecmascript-6">
export default {
  name: "",
  data() {
    return {};
  },
  components: {},
  computed: {},
  created() {},
  mounted() {},
  methods: {}
};
</script>

<style lang="scss" scoped>
.pauseShow {
  position: absolute;
  width: 70vw;
  top: 40%;
  left: 15vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
程智春 committed
32
  z-index: 2;
李嘉林 committed
33 34 35 36 37 38 39
  .tit {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
  }
}
</style>