Fix shutdown header to match antdv design (#7429)

This PR ensures the shutdown header matches the ant design specs
This commit is contained in:
David Jumani 2023-04-17 12:04:46 +05:30 committed by GitHub
parent fdc0f4fcb3
commit dddaeb7593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -18,7 +18,7 @@
<template>
<div>
<a-affix v-if="this.$store.getters.shutdownTriggered" >
<div class="shutdownHeader" v-html="$t('message.shutdown.triggered')"/>
<a-alert :message="$t('message.shutdown.triggered')" type="error" banner :showIcon="false" class="shutdownHeader" />
</a-affix>
<a-layout class="layout" :class="[device]">
<a-affix style="z-index: 200" :offsetTop="this.$store.getters.shutdownTriggered ? 25 : 0">
@ -295,9 +295,7 @@ export default {
}
.shutdownHeader {
color: red;
background: black;
font-weight: 600;
font-weight: bold;
height: 25px;
text-align: center;
padding: 0px;