1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-01 23:48:31 +00:00

migrate off of deprecated sass @imports

used `sass-migrator` and some manual intervention to migrate all of the
`@import`s to `@use` statements.

1. needed to prefix all of the `styles/main.scss` imports to use a
   relative path (i.e. `../../../../styles/main.scss`
2. needed to add a `@use "container"` to `styles/tab-container` so it
   could resolve its `@extend`s
    - not sure if this was just an ordering issue or what, but it works
This commit is contained in:
lemonslut 2025-06-07 15:22:36 -06:00
parent 6c48940f91
commit d078d6e3a9
No known key found for this signature in database
10 changed files with 55 additions and 50 deletions

View file

@ -1,14 +1,14 @@
@import "button";
@import "checkbox";
@import "interactable";
@import "text";
@import "link";
@import "card";
@import "tag";
@import "progress";
@import "tooltip";
@import "balloon";
@import "slider";
@use "button";
@use "checkbox";
@use "interactable";
@use "text";
@use "link";
@use "card";
@use "tag";
@use "progress";
@use "tooltip";
@use "balloon";
@use "slider";
.tw-line-height-body {
line-height: 1.5!important