Skip to content

Commit 35603aa

Browse files
committed
add link to generator in sidebar
1 parent 57a8260 commit 35603aa

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [3.2.3] [22/10/2021]
4+
5+
### Updated
6+
- Add link to generator in sidebar
7+
38
## [3.2.2] [12/04/2021]
49

510
### Updated

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "light-blue-vue",
3-
"version": "3.2.2",
3+
"version": "3.2.3",
44
"private": true,
55
"scripts": {
66
"start": "vue-cli-service serve --port 3000",

src/components/Sidebar/Sidebar.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@
3232
}
3333
}
3434

35+
.generator-link {
36+
display: block;
37+
color: var(--sidebar-color-item)!important;
38+
text-decoration: none;
39+
cursor: pointer;
40+
font-size: 16px!important;
41+
}
42+
3543
.nav {
3644
width: 100%;
3745
padding: 30px 0 10px;

src/components/Sidebar/Sidebar.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<header class="logo">
77
<router-link to="/app">Light <span class="fw-semi-bold">Blue</span></router-link>
88
</header>
9+
10+
<a class="generator-link navTitle" target="_blank" href="https://flatlogic.com/generator">Generate App</a>
11+
912
<ul class="nav">
1013
<NavLink
1114
:activeItem="activeItem"

0 commit comments

Comments
 (0)