mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
Migrate the index.html to use tailwind instead of bootstrap * Extracted some more global styles to override the bootstrap styles for layout frontend. We should revisit this when we remove bootstrap. * Removed Angular specific logo for anon pages. Now uses the same css class as loading page to prevent duplicated assets.
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html class="theme_light">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=1010" />
|
|
<meta name="theme-color" content="#175DDC" />
|
|
|
|
<title page-title>Bitwarden Web vault</title>
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png" />
|
|
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#175DDC" />
|
|
<link rel="manifest" href="manifest.json" />
|
|
</head>
|
|
<body class="layout_frontend">
|
|
<app-root>
|
|
<div class="tw-p-8 tw-flex">
|
|
<img class="new-logo-themed" alt="Bitwarden" />
|
|
<div class="spinner-container tw-justify-center">
|
|
<i
|
|
class="bwi bwi-spinner bwi-spin bwi-3x tw-text-muted"
|
|
title="Loading"
|
|
aria-hidden="true"
|
|
></i>
|
|
</div>
|
|
</div>
|
|
</app-root>
|
|
</body>
|
|
</html>
|