-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathindex.html
43 lines (37 loc) · 1.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Blazor WinForms app</title>
<base href="/" />
<link href="css/app.css" rel="stylesheet" />
<link href="BlazorWinFormsApp.styles.css" rel="stylesheet" />
<style>
/*make sure that the TelerikRootComponent matches the viewport of the webview
for correct popup positions, it is inside the <body> element and it has default padding
that offsets it from the viewport and can cause offsets in popups positions*/
body {
margin: 0;
padding: 0;
}
/*layout for the app to give it some space from the viewport so it does not affect positions
this element is, in the Main.razor file inside the TelerikRootComponent
*/
#viewportSpacer {
padding: 1em;
}
</style>
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" />
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" defer></script>
</head>
<body>
<div id="app"></div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webview.js"></script>
</body>
</html>