Show QR code and creator in room info

This commit is contained in:
N-Pex 2021-01-21 12:12:55 +01:00
parent 92d7920072
commit 2708e58161
6 changed files with 464 additions and 64 deletions

View file

@ -373,7 +373,7 @@ $admin-fg: white;
.room-name {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 14 * $chat-text-size;
font-size: 18 * $chat-text-size;
text-transform: uppercase;
color: black;
}
@ -448,27 +448,14 @@ $admin-fg: white;
background-color: #ededed;
width: 100px !important;
height: 100px !important;
margin-top: 20px;
margin-bottom: 20px;
.headline {
font-size: 80 * $chat-text-size !important;
font-size: 70 * $chat-text-size !important;
}
}
.room-title {
margin-bottom: 20px;
padding-bottom: 20px;
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 40 * $chat-text-size;
line-height: 108.5%;
/* or 43px */
text-align: center;
letter-spacing: -0.8px;
color: #000000;
overflow-wrap: break-word;
.avatar .headline {
font-size: 16 * $chat-text-size !important;
}
.room-name {
@ -484,11 +471,30 @@ $admin-fg: white;
font-size: 12 * $chat-text-size;
}
.qr {
width: 120px;
height: 120px;
width: min(30vw, 30vh);
height: min(30vw, 30vh);
background-color: #e0e0e0;
margin-top: 15px;
}
.v-card {
background-color: white;
border-radius: 20px;
}
.member::after {
content: ' ';
display: block;
margin: 10px 0px;
bottom: 0px;
height: 1px;
background-color: #e1e1e1;
width: 100%;
}
.show-all {
color: black;
font-size: 14 * $chat-text-size;

View file

@ -10,6 +10,25 @@ $chat-standard-padding-xs: 8px;
$chat-text-size: 1.0px;
$chat-button-height: 50px;
.h1 {
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 36 * $chat-text-size;
text-align: center;
color: black;
line-height: 108.5%;
letter-spacing: -0.8px;
overflow-wrap: break-word;
}
.h2 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 24 * $chat-text-size;
text-align: center;
color: black;
}
.v-btn.outlined-button {
font-family: 'Inter', sans-serif;
font-weight: 700;