/* v.1.3.0 */
/* fixme centring text in task */
/* fiexed textarea width: cols="100" */

input[type="chckbox"] { display: inline-block;  }
.chckbox {}

.task {
display: grid;
grid-template-columns: 30px 1fr 100px;
grid-gap: 0;
margin: 0;
width: 100%;
max-width: 100%;
justify-content: center;
align-items: safe center;
align-self: safe center;
word-break: break-all;
}

.taskItem {
padding: 4px 10px;
display: flex;
min-width: 100%;
min-height: 37px;
justify-content: start;
align-content: center;
}

@media(max-width: 240px) {
.task {
grid-template-columns: 100%;
}
}


.flexCenter {
display: flex;
align-items: safe center;
}

/*.block {
overflow: auto;
}*/


textarea { min-height: 10vh; }
html { scroll-padding-top: 15px; }
