Commit 914d9359 authored by Adam Barth's avatar Adam Barth

Fix the alignment of the title in Stock app

The left edge of the title should be on the 72px vertical keyline according to
the Material Design spec.

R=eseidel@chromium.org

Review URL: https://codereview.chromium.org/1010443005
parent 394b1e53
...@@ -32,13 +32,12 @@ class StocksApp extends App { ...@@ -32,13 +32,12 @@ class StocksApp extends App {
); );
static Style _iconStyle = new Style(''' static Style _iconStyle = new Style('''
padding: 8px; padding: 8px;'''
margin: 0 4px;'''
); );
static Style _titleStyle = new Style(''' static Style _titleStyle = new Style('''
flex: 1; padding-left: 24px;
margin: 0 4px;''' flex: 1;'''
); );
List<Stock> _sortedStocks; List<Stock> _sortedStocks;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment