We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f271a32 commit 7240154Copy full SHA for 7240154
src/index.html
@@ -1,14 +1,24 @@
1
-<!DOCTYPE html>
+<!doctype html>
2
<html lang="en">
3
-<head>
4
- <meta charset="UTF-8">
5
- <base target="_blank">
+ <head>
+ <meta charset="UTF-8" />
+ <base target="_blank" />
6
<title>Side Trakt Web</title>
7
-</head>
8
-<body>
9
- <wc-trakt-extension>
10
- Loading component ...
11
- </wc-trakt-extension>
12
- <script type="module" src="./main.ts"></script>
13
-</body>
+ </head>
+ <body>
+ <wc-trakt-extension> Loading component ... </wc-trakt-extension>
+ <script type="module" src="./main.ts"></script>
+ </body>
14
</html>
+
+<style>
15
+ body {
16
+ display: flex;
17
+ }
18
19
+ wc-trakt-extension {
20
21
+ flex: 1 1 auto;
22
+ flex-direction: column;
23
24
+</style>
0 commit comments