Inline CSS on message view, and do error handling on refresh.

This commit is contained in:
2023-03-04 11:42:19 -08:00
parent 0b4cfadf88
commit 3a47385be1
5 changed files with 723 additions and 54 deletions

View File

@@ -45,6 +45,25 @@ iframe {
.tag {
margin-right: 2px;
}
.debug ul {
padding-left: 2em;
}
.debug li {
}
.loading {
animation-name: spin;
animation-duration: 1000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
</style>
</head>