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/components/topBanner.vue

65 lines
1.1 KiB
Vue

<template>
<div class="topBanner">
<div>
<div id = "icon-arrow"><img alt="arrow" id="arrow-Top-Left" src="../sym/arrow_back-24px.svg"></div>
<div id = "picTop"><img alt="Bild" id="picTopPic" src="../sym/placeholder.png"></div>
<div id="container">
<div id = "chatName"> OpenChat</div>
<div id = "users">9 Mitglieder</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "topBanner"
}
</script>
<style scoped>
#icon-arrow{
position: absolute;
top: 0.24rem;
left: 1rem;
width: 100%;
height: 100%;
max-height: 2.3rem;
max-width: 2.3rem;
border-radius: 1.5rem;
border: #ededed solid 2px;
text-align: center;
}
#arrow-Top-Left{
margin-top: 0.4rem;
fill: #42a7b9;
}
#picTop{
top: 0.24rem;
position: absolute;
fill: #42a7b9;
left: 4rem;
}
#picTopPic{
width: 2.3rem;
height: 2.3rem;
border-radius: 1.5rem;
border: #ededed solid 2px;
background-color: #313131;
}
#container{
}
#chatName{
}
#users{
}
.topBanner{
position: absolute;
width: 100%;
height: 3rem;
background-color: #1d1d1d;
}
</style>