Skip to content

Commit 379d667

Browse files
committed
Merge branch 'dev' into Johnny
2 parents 22e7ee0 + 8d42439 commit 379d667

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

src/components/left-sidebar/ComponentTab/CreateMenuHTMLQueue.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,13 @@ li {
169169
height: 35px;
170170
padding-top: 6px;
171171
text-align: center;
172+
color: white;
172173
cursor: move;
173174
}
174175
175176
.list-group-item-selected {
176177
display: inline-block;
177-
margin: 4px 1.5%;
178+
margin: 2px 1.5%;
178179
min-width: 175px;
179180
width: 30%;
180181
border-radius: 0.5cm;

src/components/right-sidebar/CodeSnippet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export default {
237237
data += " data() {\n return {\n"
238238
htmlBinding.forEach(el => {
239239
if (el.binding !== '') {
240-
data += ` "${el.binding}": "PLACEHOLDER FOR VALUE", `
240+
data += ` ${el.binding}: "PLACEHOLDER FOR VALUE", `
241241
data += '\n'
242242
}
243243
//checks if there is binding in it's html child's child and will add to code snippet

src/components/right-sidebar/HTMLQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ hr {
313313
}
314314
315315
.currentlyDragging {
316-
opacity: 1;
316+
opacity: .5;
317317
}
318318
319319
.ignoreByDragover {

src/css/quasar.variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
// **************** Taken from OverVue *******************
2828
$primary : #737578;
29-
$secondary : #9c49a3;
29+
$secondary : #42B883;
3030
$accent : #a1ddc2;
3131
$subaccent : #0d0d0d;
3232
$subaccentbtn : #2c384d;

0 commit comments

Comments
 (0)