1
0
forked from PGL/Clyde
Clyde/frontend/src/Apps/Msg.vue

38 lines
513 B
Vue
Raw Normal View History

2024-03-22 13:54:52 +01:00
<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>