Vuetify全屏对话框是否有可能到达标题而没有覆盖标题? VueJS

时间:2018-10-17 15:54:47

标签: vuejs2 modal-dialog vuetify.js

我正在将VueJS与Vuetify 1.3.0一起使用。 我注意到dialog in fullscreen mode为我提供了很多服务,但问题是它涵盖了所有内容,我希望它仅覆盖页脚和正文,而不覆盖页眉。

是否可以(以某种方式)使fullscreen dialog仅出现在一个节中并隐藏其中的所有内容?

1 个答案:

答案 0 :(得分:0)

您可以覆盖该类:特别是“ top”属性

.v-dialog--fullscreen {
border-radius: 0;
margin: 0;
height: 100%;
position: fixed;
overflow-y: auto;
top: 100px; //Depending on the header height you want to show.
left: 0;

}