Event listeners never got registered because of timing issue (MatrixClient was not ready yet). Issue #85.
121 lines
No EOL
2.6 KiB
SCSS
121 lines
No EOL
2.6 KiB
SCSS
@import "@/assets/css/main.scss";
|
|
|
|
.v-btn.btn-light {
|
|
font-family: sans-serif;
|
|
font-weight: 700;
|
|
font-size: 11.54 * $chat-text-size;
|
|
color: black;
|
|
background-color: white !important;
|
|
border: 1px solid black;
|
|
border-radius: $chat-button-height / 2;
|
|
min-height: 0;
|
|
height: $chat-button-height !important;
|
|
margin-top: $chat-standard-padding-xs;
|
|
margin-bottom: $chat-standard-padding-xs;
|
|
}
|
|
|
|
.v-btn.btn-dark {
|
|
font-family: sans-serif;
|
|
font-weight: 700;
|
|
font-size: 11.54 * $chat-text-size;
|
|
color: white;
|
|
background-color: black !important;
|
|
border: 1px solid black;
|
|
border-radius: $chat-button-height / 2;
|
|
min-height: 0;
|
|
height: $chat-button-height !important;
|
|
margin-top: $chat-standard-padding-xs;
|
|
margin-bottom: $chat-standard-padding-xs;
|
|
}
|
|
|
|
.join-root {
|
|
margin-top: 10%;
|
|
padding: 40px;
|
|
|
|
.btn-login {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 20px;
|
|
}
|
|
|
|
.join-user-info {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
max-width: 500px;
|
|
}
|
|
}
|
|
|
|
.join-avatar {
|
|
background-color: #ededed;
|
|
width: 100px !important;
|
|
height: 100px !important;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.join-title {
|
|
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;
|
|
}
|
|
|
|
.join-message {
|
|
font-family: sans-serif;
|
|
font-weight: 400;
|
|
font-size: 16 * $chat-text-size;
|
|
color: black;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.join-privacy {
|
|
font-family: sans-serif;
|
|
font-weight: 400;
|
|
font-size: 12 * $chat-text-size;
|
|
color: #464646;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
a {
|
|
color: #464646;
|
|
}
|
|
}
|
|
|
|
.join-or-divider {
|
|
display: block;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
height: 20px;
|
|
color: #666666;
|
|
text-align: center;
|
|
line-height: var(--v-theme-title-featured-line-height);
|
|
position: relative;
|
|
font-family: sans-serif;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 9.88014 * $chat-text-size;
|
|
line-height: 140%;
|
|
/* identical to box height, or 14px */
|
|
letter-spacing: 0.29px;
|
|
color: #9C9CAE;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
top: 5px;
|
|
height: 1px;
|
|
background: #9C9CAE;
|
|
content: " ";
|
|
}
|
|
} |