Split Reddit comments into separate request

This commit is contained in:
Omar Roth
2018-07-20 14:36:23 -05:00
parent e4ba09549a
commit c7a46cd3d5
3 changed files with 84 additions and 30 deletions

View File

@@ -12,3 +12,16 @@ div {
overflow-wrap: break-word;
word-wrap: break-word;
}
.loading {
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}