Archived
1
0

Merge branch 'master' into upgrade-vscode-1.53

This commit is contained in:
Joe Previte
2021-02-26 14:23:24 -07:00
committed by GitHub
19 changed files with 338 additions and 18 deletions

View File

@ -1,4 +1,6 @@
body {
min-height: 568px;
min-width: 320px;
overflow: auto;
}
@ -15,6 +17,12 @@ body {
width: 100%;
}
@media (max-width: 600px) {
.login-form > .field {
flex-direction: column;
}
}
.login-form > .error {
color: red;
margin-top: 16px;
@ -38,6 +46,13 @@ body {
margin-left: 20px;
}
@media (max-width: 600px) {
.login-form > .field > .submit {
margin-left: 0px;
margin-top: 16px;
}
}
input {
-webkit-appearance: none;
}

View File

@ -7,7 +7,7 @@ import { rootPath } from "../constants"
import { authenticated, getCookieDomain, redirect, replaceTemplates } from "../http"
import { hash, humanPath } from "../util"
enum Cookie {
export enum Cookie {
Key = "key",
}