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
This commit is contained in:
Adam Barth 2015-03-16 13:44:10 -07:00
parent 394b1e53dd
commit 914d935903

View File

@ -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;