copied fucking angular from htmlsupplier, I hate this shit, got at least 50 errors, now its only 100 warnings, but at least it doesnt die on me, fuck this shit

This commit is contained in:
Daniel Hübleitner
2019-07-28 11:55:17 +02:00
parent cb1060dbca
commit 1e6621bb11
38 changed files with 4816 additions and 489 deletions
+38
View File
@@ -0,0 +1,38 @@
.todo-list {
.input {
box-sizing: border-box;
display: block;
width: 200px;
margin: 20px auto;
padding: 5px 8px;
background-color: #fff;
border: 1px solid #d9d9d9;
border-radius: 4px;
transition: all .3s;
}
@at-root {
.todos-type {
display: table;
margin: 0 auto;
li {
display: table-cell;
padding: 3px 8px;
cursor: pointer;
&:hover {
color: #108ee9;
}
&.active {
color: #108ee9;
}
}
}
.todos {
width: 200px;
margin: 0 auto;
li {
line-height: 1.8;
cursor: pointer;
}
}
}
}