Temporary col functionality, and absolute unfiltered styling agony
This commit is contained in:
@ -1,24 +1,21 @@
|
||||
<template>
|
||||
<div class="object-manager">
|
||||
<div class="image-container">
|
||||
<!-- @TODO show img with width100% to keep quality and show it center with padding around it, preferably the window wont jump if a larger object is selected -->
|
||||
<img :src="objectImageUrl" :alt="'Object ' + selectedObject" />
|
||||
</div>
|
||||
<div class="modal-form asset-manager">
|
||||
<form class="form-fields" @submit.prevent>
|
||||
<div class="form-field name">
|
||||
<div class="form-field col-12">
|
||||
<label for="name">Name</label>
|
||||
<input class="input-cyan" type="text" name="name" placeholder="Wall #1" />
|
||||
</div>
|
||||
<div class="form-field name">
|
||||
<label for="name">Origin X</label>
|
||||
<!-- @TODO only allow numbers here -->
|
||||
<input class="input-cyan" type="text" name="name" placeholder="Origin X" />
|
||||
<div class="form-field">
|
||||
<label for="origin-x">Origin X</label>
|
||||
<input class="input-cyan" type="number" name="origin-x" placeholder="Origin X" />
|
||||
</div>
|
||||
<div class="form-field name">
|
||||
<label for="name">Origin Y</label>
|
||||
<!-- @TODO only allow numbers here -->
|
||||
<input class="input-cyan" type="text" name="name" placeholder="Origin Y" />
|
||||
<div class="form-field">
|
||||
<label for="origin-y">Origin Y</label>
|
||||
<input class="input-cyan" type="number" name="origin-y" placeholder="Origin Y" />
|
||||
</div>
|
||||
<div class="submit">
|
||||
<button class="btn-cyan" type="button" @click="removeObject">Save</button>
|
||||
|
Reference in New Issue
Block a user