1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-21 18:02:32 +01:00

change default instance url + formatting

This commit is contained in:
Puyodead1 2023-04-10 16:51:14 -04:00
parent 28784bec9e
commit 092de4eac5
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC
27 changed files with 26372 additions and 21845 deletions

44
.editorconfig Normal file
View File

@ -0,0 +1,44 @@
root = true
[*]
charset = utf-8
# end_of_line = lf
# indent_size = 4
indent_style = tab
insert_final_newline = true
# max_line_length = 120
# tab_width = 4
[*.less]
# indent_size = 2
[*.sass]
# indent_size = 2
[*.scss]
# indent_size = 2
[*.vue]
# indent_style = tabq
[{*.ats,*.cts,*.mts,*.ts}]
# indent_style = tab
[{*.bash,*.sh,*.zsh}]
# indent_size = 2
# tab_width = 2
[{*.cjs,*.js}]
# indent_style = tab
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,jest.config}]
# indent_size = 2
[{*.htm,*.html,*.sht,*.shtm,*.shtml}]
# indent_style = tab
[{*.http,*.rest}]
# indent_size = 0
[{*.yaml,*.yml}]
# indent_size = 2

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,13 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}

View File

@ -163,7 +163,6 @@ function LoginPage() {
const {
register,
handleSubmit,
watch,
formState: { errors },
setError,
} = useForm<LoginFormValues>();

View File

@ -12,7 +12,7 @@ export default class AppStore {
this.api = new Client({
rest: {
url: "https://canary.slowcord.understars.dev/api",
url: "https://old.server.spacebar.chat/api",
},
});