From 582dc9bdcc94bccd7b74213fb626915ea6f3937e Mon Sep 17 00:00:00 2001 From: pavithran-b6 Date: Tue, 23 Sep 2025 14:45:37 +0530 Subject: [PATCH] Update orientation.md Edited the css for adding the tomster image in the welcome message --- guides/v3.28.0/tutorial/part-1/orientation.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guides/v3.28.0/tutorial/part-1/orientation.md b/guides/v3.28.0/tutorial/part-1/orientation.md index abd2250281..b583f8259f 100644 --- a/guides/v3.28.0/tutorial/part-1/orientation.md +++ b/guides/v3.28.0/tutorial/part-1/orientation.md @@ -283,8 +283,12 @@ When you are ready, save the CSS file; our trusty development server should pick To match the mockup from our designer, we will also need to download the `teaching-tomster.png` image, which was referenced from our CSS file: ```css { data-filename=app/styles/app.css } -.tomster { +.jumbo { + height: 250px; background: url(../assets/images/teaching-tomster.png); + background-position: right; + background-repeat: no-repeat; + background-size: contain; /* ...snip... */ } ```