Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 463 Bytes

11637.md

File metadata and controls

23 lines (19 loc) · 463 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'
);