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

Side by Side Diff: dashboard/dashboard/pinpoint/elements/main-page.html

Issue 2995833002: Switch dashboard to new flexbox. (Closed)
Patch Set: Created 3 years, 4 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2017 The Chromium Authors. All rights reserved. 3 Copyright 2017 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <dom-module id="main-page"> 8 <dom-module id="main-page">
9 <template> 9 <template>
10 <style> 10 <style>
11 #content { 11 #content {
12 display: inline-flex; 12 display: inline-flex;
13 display: -webkit-inline-flex;
14 flex-direction: column; 13 flex-direction: column;
15 -webkit-flex-direction: column;
16 align-items: flex-start; 14 align-items: flex-start;
17 -webkit-align-items: flex-start;
18 } 15 }
19 </style> 16 </style>
20 17
21 <div id="content"> 18 <div id="content">
22 <h1>Pinpoint Main</h1> 19 <h1>Pinpoint Main</h1>
23 <a href="/jobs/">Jobs Listing Page</a> 20 <a href="/jobs/">Jobs Listing Page</a>
24 </div> 21 </div>
25 </template> 22 </template>
26 <script> 23 <script>
27 'use strict'; 24 'use strict';
28 Polymer({ 25 Polymer({
29 is: 'main-page', 26 is: 'main-page',
30 27
31 ready() { 28 ready() {
32 } 29 }
33 }); 30 });
34 </script> 31 </script>
35 </dom-module> 32 </dom-module>
OLDNEW
« no previous file with comments | « dashboard/dashboard/pinpoint/elements/jobs-page.html ('k') | dashboard/dashboard/pinpoint/elements/navigation-bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698