15 lines
253 B
CSS
15 lines
253 B
CSS
|
|
@import "bootstrap/dist/css/bootstrap.css";
|
||
|
|
|
||
|
|
.post-form {
|
||
|
|
display: grid;
|
||
|
|
grid-template-rows: min-content auto min-content;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.post-form textarea {
|
||
|
|
height: 100%;
|
||
|
|
}
|