mirror of
https://github.com/bitwarden/browser
synced 2026-02-04 10:43:47 +00:00
* add spiner from previous branch * add loading spinner to button * Add spinner to dialog * Add spinner to icon button * add spinner to multi select component * fix spinner positioning * Add mock i18n in stories where needed * round stroke caps. Update classes * fix ts error * fix broken tests * add missing translation keys to stories * Add mising key for layout * Add mising key for nav group * Add mising key for spotlight * Add mising key for product switcher * Add mising key for dialog service * add translation to copy click story
12 lines
451 B
HTML
12 lines
451 B
HTML
<span class="tw-relative tw-inline-block tw-leading-[0px]">
|
|
<span class="tw-inline-block tw-leading-[0px]" [ngClass]="{ 'tw-invisible': showLoadingStyle() }">
|
|
<i class="bwi" [ngClass]="iconClass" aria-hidden="true"></i>
|
|
</span>
|
|
<span
|
|
class="tw-absolute tw-inset-0 tw-flex tw-items-center tw-justify-center"
|
|
[ngClass]="{ 'tw-invisible': !showLoadingStyle() }"
|
|
>
|
|
<bit-spinner size="fill" noColor></bit-spinner>
|
|
</span>
|
|
</span>
|