blob: e2ae65d7d1ff310bbb31dadd3d7b2e106dde8243 (
plain)
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
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
html {
height: 100%;
}
body {
--action-color: rgb(66, 133, 244);
--border-color: #ddd;
background-color: #fcfcfc;
box-sizing: border-box;
display: flex;
flex-direction: column;
height: 100%;
margin: 0;
min-width: 900px;
padding: 8px;
}
omnibox-input {
margin-bottom: 30px;
}
|