mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
- Remove Bootstrap styles from two-factor-setup component and replace with Tailwind equivalents - Convert two factor components to standalone components to move away from LooseComponents - Replace ul/li list with bit-item-group and bit-item components - Integrate with the bit design system --------- Co-authored-by: Oscar Hinton <Hinton@users.noreply.github.com> Co-authored-by: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com>
24 lines
476 B
SCSS
24 lines
476 B
SCSS
@import "variables.scss";
|
|
|
|
@each $mfaType in $mfaTypes {
|
|
.mfaType#{$mfaType} {
|
|
content: url("../images/two-factor/" + $mfaType + ".png");
|
|
max-width: 100px;
|
|
}
|
|
}
|
|
|
|
.mfaType1 {
|
|
@include themify($themes) {
|
|
content: url("../images/two-factor/1" + themed("mfaLogoSuffix"));
|
|
max-width: 100px;
|
|
max-height: 45px;
|
|
}
|
|
}
|
|
|
|
.mfaType7 {
|
|
@include themify($themes) {
|
|
content: url("../images/two-factor/7" + themed("mfaLogoSuffix"));
|
|
max-width: 100px;
|
|
}
|
|
}
|