mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-01 21:10:49 +08:00
* feat: create separate bit licensed browser * feat: refactor webpack config * fix: mv2 build not working * feat: add bit versions of all commands * feat: add bit CI builds * fix: scss missing from build
21 lines
570 B
HTML
21 lines
570 B
HTML
@if (showSdkWarning | async) {
|
|
<div class="tw-h-screen tw-flex tw-justify-center tw-items-center tw-p-4">
|
|
<bit-callout type="danger">
|
|
{{ "wasmNotSupported" | i18n }}
|
|
<a
|
|
bitLink
|
|
href="https://bitwarden.com/help/wasm-not-supported/"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{{ "learnMore" | i18n }}
|
|
</a>
|
|
</bit-callout>
|
|
</div>
|
|
} @else {
|
|
<div [@routerTransition]="getRouteElevation(outlet)">
|
|
<router-outlet #outlet="outlet"></router-outlet>
|
|
</div>
|
|
<bit-toast-container></bit-toast-container>
|
|
}
|