Get dm link

This commit is contained in:
N Pex 2023-09-29 15:13:12 +00:00
parent 0795c25654
commit 00f95adb09
14 changed files with 422 additions and 26 deletions

View file

@ -1405,6 +1405,24 @@ body {
transition: opacity 0.3s linear;
}
.toast-at-bottom {
position: fixed;
left: 10px;
right: 10px;
bottom: 10px;
background-color: rgba(black, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 40;
color: white;
opacity: 0;
transition: opacity 0.3s ease-in-out;
&.visible {
opacity: 1;
}
}
.auto-audio-player-root {
position: absolute;
top: 72px;
@ -1534,18 +1552,6 @@ body {
.mic-button.dimmed {
opacity: 0.5;
}
.toast-read-only {
position: fixed;
left: 10px;
right: 10px;
bottom: 10px;
background-color: rgba(black, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 40;
color: white;
}
}
.audio-layout.voice-recorder {

View file

@ -0,0 +1,82 @@
@import "@/assets/css/main.scss";
.getlink-root {
background-color: $background;
.getlink-loggedin {
text-align: center;
button {
min-width: 200px !important;
}
}
.getlink-title {
color: #000;
text-align: center;
font-family: "Poppins";
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 108.5%; /* 30.38px */
letter-spacing: -0.8px;
white-space: pre-line;
margin-top: 50px;
}
.getlink-subtitle {
color: #000;
text-align: center;
font-feature-settings: "clig" off, "liga" off;
font-family: "Inter";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 117%; /* 18.72px */
letter-spacing: 0.4px;
margin: 13px 20px 18px 20px;
}
.qr-container {
flex-direction: column;
align-items: stretch;
border-radius: 18px;
border: 1px solid #ededed;
background: #fff;
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
.col:nth-child(1) {
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
text-align: center;
.qr {
width: 120px !important;
height: 120px !important;
}
}
.public-link {
background-color: transparent;
border: none !important;
text-align: center;
}
}
#btn-copy-room-link {
background-color: var(--v-primary-base) !important;
}
.link-copied-in-place .v-btn__content {
font-family: "Inter", sans-serif !important;
font-size: 12px !important;
text-transform: none !important;
color: black;
}
.getlink-share {
position: absolute;
right: 20px;
bottom: 24px;
width: 24px;
height: 17px;
object-fit: contain;
}
}