gpt4 book ai didi

Angular Material 2 : How to overwrite Dialog max-width to 100vw?

转载 作者:太空狗 更新时间:2023-10-29 17:16:10 32 4
gpt4 key购买 nike

我正在尝试创建 100% 宽度的对话框。但作为原始设置,它被限制为 80vw。

.mat-dialog-container{
max-width:80vw;
}

我尝试了以下方法来覆盖这个值。 但他们没有成功。

.mat-dialog-container {
max-width: none;
width: 100vw;
height: 100vh;
}

.mat-dialog-container {
max-width: none !important;
}

有人请告诉我如何将 80vw 覆盖为 100vw。谢谢。

最佳答案

解决这个问题的最简单方法:

const dialogRef = this.dialog.open(MyDialogComponent, {
width: '100vw',
maxWidth: '100vw',
}
)

关于 Angular Material 2 : How to overwrite Dialog max-width to 100vw?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46034619/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com