Files
Xuezhou Dai f608c65e61 Add new omnibox sample (#988)
* Add new omnibox sample

* Update api-samples/omnibox/simple-example/README.md

Co-authored-by: Joe Medley <jmedley@google.com>

* Update api-samples/omnibox/simple-example/README.md

Co-authored-by: Joe Medley <jmedley@google.com>

* Update api-samples/omnibox/simple-example/README.md

Co-authored-by: Joe Medley <jmedley@google.com>

* Update api-samples/omnibox/simple-example/README.md

Co-authored-by: Joe Medley <jmedley@google.com>

* Update api-samples/omnibox/simple-example/README.md

Co-authored-by: Joe Medley <jmedley@google.com>

* Update description

* Update description

* Rename the global variable

---------

Co-authored-by: Joe Medley <jmedley@google.com>
2023-08-25 16:09:05 +01:00

32 lines
418 B
CSS

html,
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 14px;
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
body {
padding: 10px;
height: 100vh;
}
h1 {
margin: 0;
padding: 0;
}
#logs {
max-height: calc(100vh - 100px);
font-size: 1.2rem;
position: fixed;
bottom: 10px;
left: 10px;
right: 10px;
overflow: auto;
}