Skip to content

Commit

Permalink
fix(density): fix wrong values
Browse files Browse the repository at this point in the history
  • Loading branch information
clshortfuse committed Jul 30, 2024
1 parent 4bdfe25 commit 2aeaaef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mixins/DensityMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export default function DensityMixin(Base) {
:host([density="-1"]) { --mdw-density: -1; }
:host([density="-2"]) { --mdw-density: -2; }
:host([density="-3"]) { --mdw-density: -2; }
:host([density="-3"]) { --mdw-density: -3; }
:host([density="-4"]) { --mdw-density: -4; }
:host([density="1"]) { --mdw-density: 1; }
:host([density="2"]) { --mdw-density: 2; }
:host([density="3"]) { --mdw-density: 3; }
:host([density="4"]) { --mdw-density: 3; }
:host([density="4"]) { --mdw-density: 4; }
`;
}

0 comments on commit 2aeaaef

Please sign in to comment.