Add tracking of previous mistakes

This commit is contained in:
2021-10-08 18:56:19 +01:00
parent e6bd026f72
commit b532e2deb1
6 changed files with 292 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
.mistakes-history-container {
display: grid;
grid-column-gap: 12px;
grid-template-columns: repeat(2, minmax(110px,max-content));
width: min-content;
word-wrap: break-word;
word-break: break-word;
width: 100%;
}
.mistakes-history-container > div {
margin-bottom: 4px;
}
.mistakes-history-container > div:last-child {
margin-bottom: 0;
}