1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

[SM-45] Scaffold secrets manager module (#2989)

* Scaffold secrets manager module
This commit is contained in:
Oscar Hinton
2022-07-22 11:16:24 +02:00
committed by GitHub
parent d99acd818b
commit 80ee6d23c3
14 changed files with 158 additions and 4 deletions

View File

@@ -78,11 +78,11 @@ img.logo {
height: 43px;
margin: 0 auto;
width: 284px;
}
&.logo-themed {
@include themify($themes) {
content: url("../images/logo-" + themed("logoSuffix") + "@2x.png");
}
img.logo-themed {
@include themify($themes) {
content: url("../images/logo-" + themed("logoSuffix") + "@2x.png");
}
}

View File

@@ -1,4 +1,10 @@
/* eslint-disable no-undef, @typescript-eslint/no-var-requires */
const config = require("../../libs/components/tailwind.config.base");
config.content = [
"./src/**/*.{html,ts}",
"../../libs/components/src/**/*.{html,ts}",
"../../bitwarden_license/bit-web/src/**/*.{html,ts}",
];
module.exports = config;