diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts
index 63fbb3ac21..4bb62e1605 100644
--- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts
+++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts
@@ -2,24 +2,64 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
import { css, html, LitElement } from 'lit';
import { customElement } from 'lit/decorators.js';
+
@customElement('umb-dashboard-settings-welcome')
export class UmbDashboardSettingsWelcomeElement extends LitElement {
- static styles = [UUITextStyles, css``];
+ static styles = [UUITextStyles, css`
+ #settings-dashboard {
+ display: grid;
+ grid-gap:var(--uui-size-7);
+ grid-template-columns: repeat(3, 1fr);
+ }
+
+ @media(max-width: 1200px) {
+ #settings-dashboard {
+ grid-template-columns: repeat(2, 1fr);
+ }
+ }
+
+ @media(max-width: 800px) {
+ #settings-dashboard {
+ grid-template-columns: repeat(1, 1fr);
+ }
+ }
+ `];
render() {
return html`
- This section contains the building blocks for your Umbraco site. Follow the below links to find out more about working with the items in the Settings section.Start here
- Find out more:
-
-
-
Read more about working with the items in Settings in our Documentation.
+Ask a question in the community forum or our Discord community
+Find out about real-life training and certification opportunities
+Ask a question in the community forum or our Discord community.
+Watch our free tutorial videos on the Umbraco Learning Base YouTube channel, to get upto speed quickly with Umbraco.
+