Skip to content

Commit

Permalink
style: re-run formatter after upgrading prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Dec 6, 2024
1 parent 2a933ba commit 5d03556
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/docs/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// padding: 2rem,
// gap: 0.5rem,
// ),
// )
// )
);
4 changes: 3 additions & 1 deletion apps/docs/src/app/(main)/HomePageSection.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
@include everything.large-desktop-media {
column-gap: 2rem;
display: grid;
grid-template-columns: minmax(0, everything.typography-get-var(line-length)) 1fr;
grid-template-columns:
minmax(0, everything.typography-get-var(line-length))
1fr;
max-width: none;
padding: 0 4rem;
}
Expand Down
5 changes: 3 additions & 2 deletions packages/core/src/chip/_chip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,9 @@ $variables: (

@include box-shadows.box-shadow-transition(
$start-shadow: $outline-box-shadow,
$end-shadow:
box-shadows.box-shadow($outline-raisable-box-shadow-z-value),
$end-shadow: box-shadows.box-shadow(
$outline-raisable-box-shadow-z-value
),
$duration: $outline-raisable-transition-duration,
$active-selectors: "&.rmd-chip--pressed",
$pseudo-before: false,
Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/form/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1284,8 +1284,7 @@ $variables: (
.rmd-input-toggle {
@include icon.set-var(color, currentcolor);
@include interaction.surface(
$focus-selector:
if(
$focus-selector: if(
utils.$disable-has-selectors or utils.$disable-focus-visible,
"&:focus-within",
"&:has(:focus-visible)"
Expand Down

0 comments on commit 5d03556

Please sign in to comment.