Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 557 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 557 Bytes

Task 4

The Sass Basics articles will help you with these tasks.

Step 1

  • Open main.R.
  • Move style to the center class in app/styles/main.scss.
  • Run rhino::build_sass() and check that the text is still centered.

Step 2

  • Run rhino::lint_sass().
  • Run lint_sass(fix = TRUE).

Step 3

  • Add @use 'base'; to import the _base.scss module.
  • Use the variables defined in that module to set font and color on body.

Step 4

  • Add some background to body with the gradient mixin.