You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-chat/src/App.vue

51 lines
747 B
Vue

4 years ago
<template>
<div id="app">
4 years ago
<div class="content">
<router-view />
4 years ago
<error />
4 years ago
</div>
4 years ago
</div>
</template>
<script>
import error from "@/components/error.vue";
4 years ago
export default {
name: 'App',
components:{
error
4 years ago
}
}
</script>
<style>
4 years ago
body{
margin: 0;
}
4 years ago
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
4 years ago
position: absolute;
color: #ffffff;
background-color: #1d1d1d;
min-height: 100%;
width: 100%;
}
.content{
position: absolute;
4 years ago
top: 0;
left: calc(50% - 25rem);
padding: 0;
min-height: calc(100%);
4 years ago
width: 50rem;
min-width: 15rem;
background-color: #313131;
4 years ago
box-shadow: 3px 3px 10px #111;
}
4 years ago
@media (max-width: 55rem){
.content{
4 years ago
width: calc(100%);
4 years ago
left: 0;
}
4 years ago
}
</style>