Is there a card container class in KVision?
# kvision
w
Is there a card container class in KVision?
h
If you include the KVision Bootstrap dependency you can use the
card
class styles from Bootstrap, but there is no built-in Card class, for example.
👍 1
Actually, I stand corrected. The OnsenUI module comes with a
Card
component
r
Copy code
div(className = "card text-white bg-success mb-3") {
                div(className = "card-header") { +"Header" }
                div(className = "card-body") {
                    h5(className = "card-title") {
                        +"Some title"
                    }
                    p(className = "card-text") {
                        +"Some text. Lorem ipsum"
                    }
                }
            }
w
thanks 🙂