We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Top-line sticky bar with gradient box. Pulsing opacity. All the fanciness ;)
This is a reminder for me and @joshk about what we've discussed.
This was the first version of that progress indicator:
defmodule NervesHubWeb.Components.FwupProgressNew do use NervesHubWeb, :component attr(:fwup_progress, :any) def render(assigns) do ~H""" <div class="sticky top-0 w-full h-0 overflow-visible"> <div class="h-[1px] bg-success-500" role="progressbar" style={"width: #{@fwup_progress}%"} /> <div class="text-center pt-2 text-sm animate-pulse">Updating firmware <%= @fwup_progress %>%</div> </div> """ end end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Top-line sticky bar with gradient box. Pulsing opacity. All the fanciness ;)
This is a reminder for me and @joshk about what we've discussed.
This was the first version of that progress indicator:
The text was updated successfully, but these errors were encountered: