You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <div class="header_container"> <Date /> <div class="status_container"> <img :src="Status" class="status_img" alt="" /> <p class="status_text">机器运行状态</p> </div> </div> </template>
<script setup> import Date from './Date' import Status from '@/assets/img/status.png' </script>
<style lang="scss" scoped> .header_container { margin-bottom: 20px; display: flex; align-items: center; .status_container { width: 1362px; height: 68px; border-radius: 34px; background: #ffffff; margin-left: 20px; padding: 0 18px; box-sizing: border-box; display: flex; align-items: center; .status_img { width: 36px; height: 36px; margin-right: 18px; } .status_text { font-family: Source Han Sans CN; font-size: 22px; font-weight: 500; line-height: normal; letter-spacing: 0.06em; font-feature-settings: 'kern' on; color: #1c1c1c; } } } </style>
|