1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 02:33:46 +00:00

[CL-672] update mobile design of dialog (#14828)

---------

Co-authored-by: Vicki League <vleague@bitwarden.com>
This commit is contained in:
Mark Youssef
2025-11-13 18:59:03 -08:00
committed by GitHub
parent 9a3ba9e05b
commit a55d0f02f2
30 changed files with 255 additions and 53 deletions

View File

@@ -9,7 +9,7 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic
import { ButtonModule } from "../../button";
import { I18nMockService } from "../../utils/i18n-mock.service";
import { DialogModule } from "../dialog.module";
import { DialogService } from "../dialog.service";
import { CenterPositionStrategy, DialogService } from "../dialog.service";
interface Animal {
animal: string;
@@ -37,6 +37,7 @@ class StoryDialogComponent {
data: {
animal: "panda",
},
positionStrategy: new CenterPositionStrategy(),
});
}
@@ -46,6 +47,7 @@ class StoryDialogComponent {
animal: "panda",
},
disableClose: true,
positionStrategy: new CenterPositionStrategy(),
});
}
@@ -55,6 +57,7 @@ class StoryDialogComponent {
animal: "panda",
},
disableClose: true,
positionStrategy: new CenterPositionStrategy(),
});
}
}