DEV Community

Sivasubramanian
Sivasubramanian

Posted on • Updated on

Nested property declarations in Sass

Use nested property declarations

// typography.scss

body {
  font: {
    size: 16px;
    weight: 500;
  }
}
Enter fullscreen mode Exit fullscreen mode

instead of

// typography.scss

body {
  font-size: 16px;
  font-weight: 500;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)