added full viewport height with flex to a bunch of elements

display: flex; flex-direction: column; flex-grow: 1;
This commit is contained in:
westtle 2024-02-05 19:10:56 +07:00
parent 8cee77fae2
commit b086462ad6

View file

@ -83,6 +83,16 @@ textarea {
clip-path: inset(50%);
}
html,
body,
main,
.simple-note,
.simple-note__inputs {
display: flex;
flex-direction: column;
flex-grow: 1;
}
html {
min-height: 100%;
}