-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Entry flow UX changes - Part 1 #175
Conversation
src/hub.js
Outdated
// Wait a tick so that the environments actually render. | ||
setTimeout(() => scene.renderer.animate(null)); | ||
// Wait a tick plus some margin so that the environments actually render. | ||
setTimeout(() => scene.renderer.animate(null), 100); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Turns out a timeout of 0
would sometimes partially render the environment.
Suggestions as discussed:
|
@@ -28,17 +28,29 @@ | |||
@extend %rounded-border; | |||
@extend %default-font; | |||
|
|||
appearance: none; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
color: white; | ||
font-size: 1.1em; | ||
width: 90%; | ||
} | ||
|
||
&__mic-icon { | ||
pointer-events: none; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice catch
lgtm! (not sure if you want to cut a new PR for those additional changes, this PR lgtm as-is) |
(not sure what is up with build though) |
RE: Random names / possibly animal names... There are a wide range of duck (and other waterfowl) species as listed here: https://www.thespruce.com/duck-species-list-385436 |
Entry flow UX changes - Part 2
See commit list for changes.
For #116