~nik90/ubuntu-clock-app/fix-overlapping-world-listview

« back to all changes in this revision

Viewing changes to clock/EasterEgg.qml

  • Committer: Tarmac
  • Author(s): Nekhelesh Ramananthan
  • Date: 2013-06-21 16:35:13 UTC
  • mfrom: (108.1.2 clock-designfixes)
  • Revision ID: tarmac-20130621163513-pfnmdlqyre6dvecd
Tweak clock font sizes accorded to updated designs.

Approved by Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
            id: sunriseLabel
82
82
            anchors.horizontalCenter: parent.horizontalCenter
83
83
            color: Constants.brightWhite;
84
 
            fontSize: "small";
 
84
            fontSize: "medium";
85
85
            text: i18n.tr("Sunrise")
86
86
        }
87
87
        
89
89
            id: sunriseTimeLabel
90
90
            anchors.horizontalCenter: parent.horizontalCenter
91
91
            color: Constants.brightWhite;
92
 
            font.pixelSize: 35;
 
92
            fontSize: "x-large";
93
93
            text: i18n.tr("loading")
94
94
        }
95
95
        
106
106
            width: parent.width
107
107
            horizontalAlignment: Text.AlignHCenter
108
108
            color: Constants.brightWhite;
109
 
            font.pixelSize: 35;
 
109
            fontSize: "x-large";
110
110
            text: i18n.tr("loading")
111
111
        }
112
112
        
115
115
            width: parent.width
116
116
            horizontalAlignment: Text.AlignHCenter
117
117
            color: Constants.brightWhite;
118
 
            fontSize: "small";
 
118
            fontSize: "medium";
119
119
            text: i18n.tr("Sunset")
120
120
        }
121
121