mirror of
https://github.com/Lissy93/dashy.git
synced 2025-04-08 17:06:18 +02:00
21 lines
415 B
Vue
21 lines
415 B
Vue
<template>
|
|
<div class="edit-mode-top-banner">
|
|
<span>Edit Mode Enabled</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
div.edit-mode-top-banner {
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 0.2rem 0;
|
|
background: var(--interactive-editor-color);
|
|
opacity: var(--dimming-factor);
|
|
span {
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
color: var(--interactive-editor-background);
|
|
}
|
|
}
|
|
</style>
|