我正在将VueJS与Vuetify 1.3.0一起使用。 我注意到dialog in fullscreen mode为我提供了很多服务,但问题是它涵盖了所有内容,我希望它仅覆盖页脚和正文,而不覆盖页眉。
是否可以(以某种方式)使fullscreen dialog仅出现在一个节中并隐藏其中的所有内容?
答案 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;
}