style(frontend): login page styling touchup (#64)

This commit is contained in:
sct
2020-09-09 10:16:19 +09:00
committed by GitHub
parent 432ad76b3b
commit 6241d0cf78
8 changed files with 462 additions and 33 deletions

24
src/types/custom.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
/* eslint-disable */
declare module '*.svg' {
const content: any;
export default content;
}
declare module '*.jpg' {
const content: any;
export default content;
}
declare module '*.jpeg' {
const content: any;
export default content;
}
declare module '*.gif' {
const content: any;
export default content;
}
declare module '*.png' {
const content: any;
export default content;
}