EmptyLayout.css 316 Bytes
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.empty-layout {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Prevent margin collapse */
.empty-layout::before {
    content: "\00a0";
    display: block;
    overflow: hidden;
    height: 0;
}

.empty-layout > div.content,
.empty-layout > div.content > div {
    width: 100%;
    height: 100%;
}