diff --git a/src/components/OnboardingModal.jsx b/src/components/OnboardingModal.jsx index 8f84aa2..2a0372f 100644 --- a/src/components/OnboardingModal.jsx +++ b/src/components/OnboardingModal.jsx @@ -1,84 +1,93 @@ import { h } from 'preact'; import Modal from './Modal.jsx'; +import { Stack } from './Stack.jsx'; export function OnboardingModal(props) { return ( -
-

Welcome to Web Maker

-
+

Welcome to Web Maker

+ -
-
-
+
+
+ -
-

- Open Web Maker anytime by visiting{' '} - https://webmaker.app/create/ - Even when you are offline! It - just works! 😱 Drag the following bookmarklet on - your bookmark bar to create a quick access shortcut: - -

+ Open Web Maker anytime by visiting{' '} + https://webmaker.app/create/ - Even when you are offline! + It just works! 😱 Drag the following bookmarklet{' '} + on your bookmark bar to create a quick access shortcut: + + + Web Maker + +

+ +
+
+ + + + + +

+ Open Web Maker anytime by clicking the + + {' '} + button in top-right side of your browser. +

+
+
+ +
+ + + + + +

+ Configure and customize settings by clicking the gear icon ( + + - Web Maker - -

-
-
-
- - - -
-

- Open Web Maker anytime by clicking the - - - {' '} - button in top-right side of your browser. -

+ ) in bottom right of the app. +

+
-
- - - -
-

- Configure and customize settings by clicking the gear icon ( - - - - ) in bottom right of the app. -

-
-
-
+ -
-

- Follow{' '} - - @webmakerApp - {' '} - to know about the new upcoming features! -

+ +

+ Follow{' '} + + @webmakerApp + {' '} + to know about the new upcoming features! +

+
@@ -95,11 +104,11 @@ export function OnboardingModal(props) { .

-

+ -

+ ); } diff --git a/src/style.css b/src/style.css index 120575c..643f9b4 100644 --- a/src/style.css +++ b/src/style.css @@ -1609,13 +1609,16 @@ body > #demo-frame { } .onboard-step { - margin: 15px; - padding: 20px 30px; + margin: 0.5rem; + padding: 1rem; background-color: rgba(255, 255, 255, 0.1); - border-radius: 10px; + border-radius: 0.8rem; box-shadow: 0 16px 22px rgba(0, 0, 0, 0.1); flex: 1; } +.onboard-step--full-width { + grid-column: 1 / -1; +} .onboard-step__icon { fill: rgba(255, 255, 255, 0.3);