Merge remote-tracking branch 'origin/main' into task/assets-logic

# Conflicts:
#	src/components/utilities/assetManager/partials/TileList.vue
This commit is contained in:
2024-06-29 19:53:09 +02:00
3 changed files with 141 additions and 129 deletions

View File

@ -0,0 +1,28 @@
<template>
<div class="image-container">
<img src="/assets/placeholders/wall-1.png" />
</div>
<div class="modal-form asset-manager">
<form class="form-fields">
<div class="form-field name">
<label for="name">Name</label>
<input class="input-cyan" type="text" name="name" placeholder="Wall #1" />
</div>
<div class="submit">
<button class="btn-cyan" type="submit">Save</button>
<button class="btn-bordeaux" type="submit">Remove</button>
</div>
</form>
</div>
</template>
<script setup lang="ts">
const properties = defineProps({
tile: String
});
</script>
<style lang="scss">
</style>