add a version thing and fix css editor import
This commit is contained in:
parent
a5cad6731c
commit
e9b15a33b1
|
@ -94,3 +94,18 @@
|
|||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.bd-info {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
align-items: flex-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bd-info span {
|
||||
color: #414245;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
}
|
||||
</style>
|
|
@ -1,7 +1,7 @@
|
|||
<template src="./templates/CssEditor.html"></template>
|
||||
|
||||
<script>
|
||||
const { CssEditor } = require('../../../../');
|
||||
const { CssEditor } = require('../../../');
|
||||
|
||||
/*Imports*/
|
||||
import { SettingsWrapper } from './';
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
<span>ESC</span>
|
||||
</div>
|
||||
<SidebarItem v-for="item in sidebarItems" :item="item" :key="item.id" :onClick="itemOnClick" />
|
||||
<div class="bd-info">
|
||||
<span>v2.0.0a by Jiiks/JsSucks</span>
|
||||
</div>
|
||||
</Sidebar>
|
||||
<ContentColumn slot="content">
|
||||
<div :class="{active: activeContent('core'), animating: animatingContent('core')}">
|
||||
|
|
Loading…
Reference in New Issue