mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-30 12:54:31 +01:00
ec3c95d736
* [Icons] Update Font Sheet * Added import statement for styles * updated to clone icon * Changed save to save changes icon * Revert to using base bwi class * Updated import order for bwi icon styles * Converted new account switcher ui updates * Bump jslib * Fix occurances where bwi-eye-slash was used instead of btw-eye-slash-2 * Move settings cog to the left side * Updated eye/eye-slash icon references * Update jslib * Update jslib * Update fallback image for cipher icon * Update jslib Co-authored-by: Hinton <oscar@oscarhinton.com>
20 lines
581 B
HTML
20 lines
581 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; style-src 'self' 'unsafe-inline';
|
|
img-src 'self' data: *; child-src *; frame-src *; connect-src *;"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Bitwarden</title>
|
|
<base href="" />
|
|
</head>
|
|
<body class="layout_frontend">
|
|
<app-root>
|
|
<div id="loading"><i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i></div>
|
|
</app-root>
|
|
</body>
|
|
</html>
|