2026-02-21 23:09:34 +00:00
|
|
|
// Bootstrap customizations
|
|
|
|
|
|
|
|
|
|
$container-max-widths: (
|
|
|
|
|
sm: 540px,
|
|
|
|
|
md: 720px,
|
|
|
|
|
lg: 960px,
|
|
|
|
|
xl: 960px,
|
|
|
|
|
xxl: 960px
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
@import "bootstrap/scss/bootstrap.scss";
|
|
|
|
|
|
|
|
|
|
// Local classes
|
2026-02-20 23:22:10 +00:00
|
|
|
|
|
|
|
|
.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%;
|
|
|
|
|
}
|