This commit is contained in:
2024-03-22 13:54:52 +01:00
parent 9e0db361b8
commit 2dfa0a0ee0
3 changed files with 64 additions and 0 deletions

37
frontend/src/Apps/Msg.vue Normal file
View File

@ -0,0 +1,37 @@
<script setup>
import { ref } from 'vue'
</script>
<template>
<div id="msg">
<div id="discList"></div>
<div id="discussion"></div>
</div>
</template>
<style scoped>
div#msg{
position: relative;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 20% auto;
}
div#discList{
margin: 30px 0 30px 30px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 10px;
}
div#discussion{
margin: 30px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 10px;
}
</style>