12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ROOT > * {
- marginLeft: 24;
- marginRight: 24;
- marginBottom: 8;
- marginTop: 8;
- }
- ROOT > Badge {
- marginLeft: 50;
- }
- ROOT > Image {
- marginLeft: 0;
- marginRight: 0;
- marginTop: 0;
- }
- Image {
- alignItems: center;
- }
- ROOT > ~Badge {
- TEST: LALALALLA;
- }
- ~Text {
- fontSize: 11;
- }
- Image > ~Text {
- fontSize: 111;
- }
- Image > Text {
- asdfontSize: 111;
- }
- Image > * {
- justifyContent: center;
- alignSelf: center;
- }
- Badge - Button {
- width: 10;
- }
- Badge + Button {
- paddingTop: 100;
- }
|