fix: bad tsconfig

This commit is contained in:
2023-10-06 14:17:28 +01:00
parent 0ff3aad6cb
commit 585f031ce1
6 changed files with 21 additions and 21 deletions

View File

@ -39,14 +39,3 @@
transform-origin: center;
transform: rotate(-135deg) translateY(50%);
}
.avatar .icons > .icon-circle {
display: flex;
align-items: center;
justify-content: center;
transform-origin: center;
padding: 4px;
border-radius: 100%;
background-color: var(--gray-superdark);
transform: rotate(135deg);
}

View File

@ -32,3 +32,14 @@ a.pfp {
.pfp a {
text-decoration: none;
}
.pfp .icon-circle {
display: flex;
align-items: center;
justify-content: center;
transform-origin: center;
padding: 4px;
border-radius: 100%;
background-color: var(--gray-superdark);
transform: rotate(135deg);
}

View File

@ -10,7 +10,7 @@ interface Newest<T> {
timestamp: number;
}
export enum LoginSessionType {
export const enum LoginSessionType {
PrivateKey = "private_key",
PublicKey = "public_key",
Nip7 = "nip7",