Skip to content

Commit

Permalink
refactor(enhance): ♻️ Refactor reset file to use new mixin names
Browse files Browse the repository at this point in the history
Update `reset.scss` to utilize the new mixins for vendor prefixing, improving code maintainability and organization. This change also helps to enhance readability and reusability of the code. No related issues.
  • Loading branch information
krypton225 committed Dec 26, 2023
1 parent 5c7abd9 commit 25425d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/base/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

// @repository: https://github.com/krypton225/sass-pire

@use "../mixins/vendor-prefixes/prefix" as pref;
@use "../base/banner" as b;
@include b.banner;
@use "../mixins/vendor-prefixes/prefix" as LibMixin1;
@use "../base/banner" as LibMixin2;
@include LibMixin2.banner;

// * Box sizing rules.
*,
Expand Down Expand Up @@ -93,9 +93,9 @@ select {
*,
*::before,
*::after {
@include pref.prefixing-web(animation-duration, 0.01ms);
@include pref.prefixing-web(animation-iteration-count, 1);
@include pref.prefixing-web-o(transition-duration, 0.01ms);
@include LibMixin1.prefixing-web(animation-duration, 0.01ms);
@include LibMixin1.prefixing-web(animation-iteration-count, 1);
@include LibMixin1.prefixing-web-o(transition-duration, 0.01ms);

scroll-behavior: smooth;
}
Expand Down

0 comments on commit 25425d9

Please sign in to comment.