moved q to archive

It's been fun while it lasted!
This commit is contained in:
Michael Peters 2021-12-30 20:35:56 -06:00
parent b9da8c73c6
commit 59f4829fa9
3 changed files with 2 additions and 9 deletions

View File

@ -3,6 +3,7 @@
.message-react {
display: flex;
padding: 4px 16px;
user-select: text;
&.continued {
margin-top: -4px;
@ -33,7 +34,6 @@
flex-flow: column;
align-items: flex-start;
margin-left: 16px; /* putting the margin here rather than on the avatar makes selecting better */
user-select: text;
}
.header {
@ -61,6 +61,7 @@
color: theme.$text-muted;
margin-left: 4px;
white-space: nowrap;
user-select: none;
}
.content {

View File

@ -8,14 +8,6 @@ import * as path from 'path';
import * as socketio from 'socket.io-client';
interface WithPotentialErrorParams {
taskFunc: (() => Promise<void>),
errorIndicatorAddFunc: ((element: Element) => Promise<void>),
errorContainer: HTMLElement,
errorClasses?: string[],
errorMessage: string,
}
export default class Util {
static async exists(path: string): Promise<boolean> {
// Check if a file exists