feature: add qr codes to the invite popup
feature: starting work on notifications fix: some styling updates
This commit is contained in:
parent
7b3494cc32
commit
9ab3950502
7 changed files with 97 additions and 32 deletions
|
|
@ -14,11 +14,23 @@
|
|||
background: var(--bg);
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transition: all 0.33s ease;
|
||||
animation: slideIn 0.4s ease;
|
||||
}
|
||||
|
||||
@keyframes slideIn {
|
||||
#auth-container {
|
||||
width: 95%;
|
||||
min-height: 25rem;
|
||||
position: relative;
|
||||
background: hsl(from var(--bg) h s calc(l/1.1) / 0.5);
|
||||
max-width: 40em;
|
||||
margin: 0 auto;
|
||||
border-radius: calc( var(--border-radius) * 2);
|
||||
overflow: hidden;
|
||||
|
||||
transition: all 0.33s ease;
|
||||
animation: zoomsettle 0.4s ease;
|
||||
}
|
||||
|
||||
@keyframes zoomsettle {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale(1.2);
|
||||
|
|
@ -44,26 +56,15 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
#signup-login-wall .limiter {
|
||||
width: 95%;
|
||||
min-height: 24rem;
|
||||
position: relative;
|
||||
background: hsl(from var(--bg) h s calc(l/1.1));
|
||||
max-width: 40em;
|
||||
margin: 0 auto;
|
||||
border-radius: var(--border-radius);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#signup-login-wall form {
|
||||
width: 100%;
|
||||
padding: 1.5rem 1.5rem 0 1.5rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- #include "./files/settings/signup_pitch.html" or "./files/settings/signup_pitch.md" or "./signup_pitch.default.md" -->
|
||||
<div id="auth-container" class="limiter">
|
||||
<!-- #include "./files/settings/signup_pitch.html" or "./files/settings/signup_pitch.md" or "./signup_pitch.default.md" -->
|
||||
|
||||
<div class="limiter">
|
||||
<div class="tabs">
|
||||
<div id="signup-tab" class="tab">
|
||||
<input
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue