From f51e812968811e50a523e15a720df76bea6d0e45 Mon Sep 17 00:00:00 2001 From: "Pedro X." Date: Thu, 25 Apr 2024 11:40:34 +0100 Subject: [PATCH] add heading class and content class options --- 6.x/base-widgets.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/6.x/base-widgets.md b/6.x/base-widgets.md index 04e52126..d984ee64 100644 --- a/6.x/base-widgets.md +++ b/6.x/base-widgets.md @@ -402,9 +402,12 @@ Shows a Bootstrap jumbotron component, with the heading and body you specify. [ 'type' => 'jumbotron', 'heading' => 'Welcome!', - 'content' => 'Use the sidebar to the left to create, edit or delete content.', + 'content' => 'My magnific headline! Lets build something awesome together.', 'button_link' => backpack_url('logout'), 'button_text' => 'Logout', + // OPTIONAL: + 'heading_class' => 'display-3 text-white', + 'content_class' => 'text-white', ] ```