css mobile
This commit is contained in:
@@ -237,10 +237,11 @@ fun runEmbeddedServer()
|
||||
}
|
||||
}
|
||||
|
||||
staticFiles("/admin", File(resourcesPath+"/admin.html"))
|
||||
staticFiles("/admin", File("$resourcesPath/admin.html"))
|
||||
staticFiles("/resources", File(resourcesPath))
|
||||
staticFiles("/", File(resourcesPath+"/index.html"))
|
||||
staticFiles("/about", File(resourcesPath+"/about.html"))
|
||||
staticFiles("/", File("$resourcesPath/index.html"))
|
||||
staticFiles("/style", File("$resourcesPath/style.css"))
|
||||
staticFiles("/about", File("$resourcesPath/about.html"))
|
||||
|
||||
put("/api/write/{id}")
|
||||
{
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
|
||||
<title>ScottGPT</title>
|
||||
<link rel="icon" type="image/x-icon" href="/resources/favicon.ico">
|
||||
<link rel="stylesheet" href="/resources/style.css">
|
||||
<link rel="stylesheet" href="/style">
|
||||
|
||||
</head>
|
||||
<body onload="javascript:init()" style="margin: 0; height: 100%; overflow: hidden;">
|
||||
|
||||
Reference in New Issue
Block a user