mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* Add css-perf app. * Style properties now check only properties that are set. Image utils module required on top (instead of in onMeasure) to improve performance. Remove try/catch block when Style applies native property. * fix tslint * Fix broken merge Update package.json version * Failed miserably - if the try/catch around applyProperty method is removed - TextField fails big time. TextField needs some good refactoring as well as calls to _updateTextDecoration & _updateTextTransform utils - setTextTransform & setTextDecoration should be split, typing support should be added.
29 lines
376 B
CSS
29 lines
376 B
CSS
.title {
|
|
font-size: 20;
|
|
margin: 3;
|
|
}
|
|
|
|
.author {
|
|
font-size: 14;
|
|
horizontal-align: left;
|
|
vertical-align: bottom;
|
|
margin: 3;
|
|
}
|
|
|
|
.comments {
|
|
color: #10C2B0;
|
|
font-size: 14;
|
|
vertical-align: bottom;
|
|
margin: 3;
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 72;
|
|
height: 72;
|
|
margin: 3;
|
|
vertical-align: top;
|
|
}
|
|
|
|
TabView {
|
|
background-color: white;
|
|
} |