css: Nest .drafts-list inside .drafts-container.

This commit is contained in:
Vaibhav
2019-08-16 07:36:15 +05:30
committed by Tim Abbott
parent 4e7f3eba85
commit f94f4ac48e

View File

@@ -43,27 +43,27 @@
} }
} }
} }
}
.drafts-list { .drafts-list {
padding: 10px 0; padding: 10px 0;
overflow: auto; overflow: auto;
.no-drafts { .no-drafts {
display: block; display: block;
margin-top: calc(45vh - 30px - 1.5em); margin-top: calc(45vh - 30px - 1.5em);
text-align: center; text-align: center;
font-size: 1.5em; font-size: 1.5em;
color: hsl(0, 0%, 67%); color: hsl(0, 0%, 67%);
pointer-events: none; pointer-events: none;
} }
.removed-drafts { .removed-drafts {
display: block; display: block;
text-align: center; text-align: center;
font-size: 1em; font-size: 1em;
color: hsl(0, 0%, 67%); color: hsl(0, 0%, 67%);
pointer-events: none; pointer-events: none;
}
} }
} }