22 lines
289 B
Vue
22 lines
289 B
Vue
<template>
|
|
<h3>
|
|
</h3>
|
|
<div class="unconfirmed-banner">
|
|
<p>{{ $t('unconfirmedBanner.message') }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang=scss scoped>
|
|
.unconfirmed-banner {
|
|
width:100%;
|
|
background-color: #ea4335;
|
|
height:1.3em;
|
|
|
|
}
|
|
|
|
p{
|
|
text-align: center;
|
|
margin: auto;
|
|
}
|
|
|
|
</style> |