Improved styling and synchronisation

This commit is contained in:
Richard Bowman 2024-01-10 13:24:01 +00:00
parent 53644a691b
commit 46444770f3
3 changed files with 41 additions and 9 deletions

View file

@ -1,5 +1,5 @@
<template>
<div id="log-container" ref="logContainer">
<div class="log-container" ref="logContainer">
<div v-if="log">
<div v-for="(item, index) in log" :key="`log_entry_${index}`">
{{ item.message }}
@ -44,9 +44,8 @@ export default {
</script>
<style scoped>
#log-container {
.log-container {
position: relative;
height: 6em;
overflow-y: scroll;
overflow-x: auto;
}