Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: components/proximity_auth/webui/resources/proximity_auth.css

Issue 1080163002: Add new chrome://proximity-auth WebUI for debugging Smart Lock. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 html, 6 html,
7 body, 7 body {
8 iframe { 8 width: 100%;
9 height: 100%; 9 height: 100%;
10 margin: 0; 10 margin: 0;
11 padding: 0; 11 padding: 0;
12 width: 100%;
13 }
14
15 iframe {
16 overflow: hidden; 12 overflow: hidden;
17 } 13 }
18 14
19 webview { 15 canvas {
20 display: inline-block; 16 width: 100%;
21 height: 100%; 17 height: 100%;
22 margin: 0; 18 margin: 0;
23 padding: 0;
24 width: 100%;
25 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698