forked from vgaNAR6ta/drags-and-nerds
38 lines
736 B
Vue
38 lines
736 B
Vue
<template>
|
|
<div id="inboxContainer" class="uiStyle">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/*================= Mise en page:
|
|
=> Mobile First : par défaut, moins de 500px
|
|
=> Tablette et PC format haut : de 500 à 1000px
|
|
=> PC large : à partir de 1000px
|
|
*/
|
|
|
|
/*+++++++++++++++++ COPYBOX
|
|
================ PC HAUT/IPAD
|
|
@media(min-width:500px){}
|
|
================ PC LARGE
|
|
@media(min-width:1000px){}
|
|
*/
|
|
|
|
#inboxContainer{
|
|
width:100%;
|
|
position:relative;
|
|
height:50%;
|
|
}
|
|
/*================ PC LARGE*/
|
|
@media(min-width:1000px){}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
name : 'InboxContent',
|
|
mounted(){
|
|
console.log("Inbox content is loaded!");
|
|
}
|
|
};
|
|
</script>
|