Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 456 Bytes

11637.md

File metadata and controls

21 lines (17 loc) · 456 Bytes

Improve @use with formatting (#11637 by @sosukesuzuki)

// Input
@use 'library' with (
  $black: #222,
  $border-radius: 0.1rem $font-family: 'Helvetica, sans-serif'
);

// Prettier stable
@use 'library' with
  ($black: #222, $border-radius: 0.1rem $font-family: 'Helvetica, sans-serif');

// Prettier main
@use 'library' with (
  $black: #222,
  $border-radius: 0.1rem $font-family: 'Helvetica, sans-serif'
);