-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes Sass deprecation warnings by running npx sass-migrator division **/*.scss and npx sass-migrator module **/*.scss The only manual change after that was replacing `math.div` with `list.slash` in the `$text-title-*` and `$text-body-*` variables in tokens.scss, as the `/` there wasn't part of a division.
- Loading branch information
Showing
80 changed files
with
1,637 additions
and
1,612 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
src/app/(proper_react)/(redesign)/(authenticated)/admin/emails/EmailTrigger.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
@import "../../../../../tokens"; | ||
@use "../../../../../tokens"; | ||
|
||
.wrapper { | ||
display: flex; | ||
flex-direction: column; | ||
gap: $spacing-2xl; | ||
background-color: $color-grey-05; | ||
gap: tokens.$spacing-2xl; | ||
background-color: tokens.$color-grey-05; | ||
height: 100%; | ||
padding: $layout-lg $layout-2xl; | ||
padding: tokens.$layout-lg tokens.$layout-2xl; | ||
|
||
@media screen and (max-width: $screen-lg) { | ||
padding: $spacing-lg; | ||
@media screen and (max-width: tokens.$screen-lg) { | ||
padding: tokens.$spacing-lg; | ||
} | ||
} | ||
|
||
.addressSection { | ||
display: flex; | ||
flex-direction: column; | ||
gap: $spacing-sm; | ||
gap: tokens.$spacing-sm; | ||
|
||
.addressPicker { | ||
display: flex; | ||
align-items: center; | ||
gap: $spacing-md; | ||
gap: tokens.$spacing-md; | ||
|
||
label { | ||
font: $text-body-lg; | ||
font: tokens.$text-body-lg; | ||
font-weight: 700; | ||
} | ||
|
||
select { | ||
padding: $spacing-sm; | ||
padding: tokens.$spacing-sm; | ||
} | ||
} | ||
} | ||
|
||
.triggers { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: $spacing-lg; | ||
gap: tokens.$spacing-lg; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.