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` - -

Start here

-

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.

-

Find out more:

- -
+
+ +

Documentation

+

Read more about working with the items in Settings in our Documentation.

+ Get the help you need +
+ + +

Community

+

Ask a question in the community forum or our Discord community

+ Go to the forum + Chat with the community +
+ + +

Training

+

Find out about real-life training and certification opportunities

+ Get Certified +
+ + +

Support

+

Ask a question in the community forum or our Discord community.

+ Get the help you need +
+ + +

Videos

+

Watch our free tutorial videos on the Umbraco Learning Base YouTube channel, to get upto speed quickly with Umbraco.

+ Watch the videos +
+
+ `; } }