mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
21 lines
293 B
CSS
21 lines
293 B
CSS
Label {
|
|
margin: 6;
|
|
padding: 4;
|
|
}
|
|
|
|
.unselected {
|
|
border-width: 4;
|
|
border-color: gray;
|
|
border-radius: 10;
|
|
background: white;
|
|
color: gray
|
|
}
|
|
|
|
.selected {
|
|
border-width: 4;
|
|
border-color: blue;
|
|
border-radius: 10;
|
|
background: lightcoral;
|
|
color: blue;
|
|
}
|