Browse Source

Update snippets in web tutorials

pull/787/head
Oleksandr Karpovich 3 years ago
parent
commit
679ed1dda9
  1. 4
      tutorials/Web/Building_UI/README.md
  2. 10
      tutorials/Web/Style_Dsl/README.md

4
tutorials/Web/Building_UI/README.md

@ -165,7 +165,7 @@ Div(
padding(20.px)
// custom property
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
) { /* content goes here */ }
```
@ -247,7 +247,7 @@ fun main() {
padding(20.px)
// custom property
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
}) { Text("Text in Div with inline style") }
}

10
tutorials/Web/Style_Dsl/README.md

@ -16,7 +16,7 @@ Div({
padding(20.px)
// custom property (or not supported out of a box)
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
}) { /* content goes here */ }
```
@ -38,7 +38,7 @@ object AppStylesheet : StyleSheet() {
padding(20.px)
// custom property (or not supported out of a box)
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
}
@ -84,7 +84,7 @@ object AppStylesheet : StyleSheet() {
// raw selector
"h1, h2, h3, h4, h5, h6" style {
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
@ -175,7 +175,7 @@ object AppStylesheet : StyleSheet() {
padding(20.px)
// custom property (or not supported out of a box)
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
}
@ -196,7 +196,7 @@ fun main() {
padding(20.px)
// custom property (or not supported out of a box)
property("font-family", value("Arial, Helvetica, sans-serif"))
property("font-family", "Arial, Helvetica, sans-serif")
}
}) { /* content goes here */ }

Loading…
Cancel
Save