Skip to content
Snippets Groups Projects
Commit 519279b7 authored by Adam Procter's avatar Adam Procter
Browse files

updated box style and img width

parent 799c8113
Branches quickStylefixes
No related tags found
No related merge requests found
......@@ -17,6 +17,9 @@
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
width: 100%;
}
#nav a {
font-weight: bold;
......
......@@ -13,7 +13,8 @@
@resizing="onResize"
@dragstop="onDragstop"
@resizestop="onResizestop"
style="background-color: rgb(205, 234, 255);"
:drag-cancel="'.drag-cancel'"
style="background-color: rgb(205, 234, 255)"
>
<form>
<div v-for="value in myNodes" v-bind:key="value.nodeid">
......@@ -22,6 +23,7 @@
@input="editNode"
v-model="value.nodetext"
:id="nodeid"
class="drag-cancel"
></textarea>
</div>
<h3>Reactions</h3>
......@@ -61,7 +63,8 @@ export default {
width: this.nodewidth,
height: this.nodeheight,
localx: 0,
localy: 0
localy: 0,
globalscale: 0.7
}
},
......@@ -143,9 +146,17 @@ export default {
position: relative;
}
img {
width: 100%;
}
/* .draggable {
transform: scale(0.7);
} */
textarea {
width: 100%;
height: 120px;
resize: none;
box-sizing: border-box;
}
</style>
......@@ -183,6 +183,7 @@ export default {
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.node {
background-color: aquamarine;
position: absolute;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment