Skip to content

Commit

Permalink
frontend: Fix sass warning
Browse files Browse the repository at this point in the history
  • Loading branch information
malinskibeniamin committed Sep 27, 2024
1 parent 85f1cc8 commit 7f2c862
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/src/components/misc/BoxCard.module.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

/**
* Copyright 2022 Redpanda Data, Inc.
*
Expand All @@ -20,8 +22,10 @@
border-style: dashed;
}

.hoverable:hover {
border-color: lighten(#418fd8, 25%);
.hoverable:hover {
$color: #418fd8;
@debug color.adjust($color, $lightness: 25%);
border-color: $color;
}

.active,
Expand Down

0 comments on commit 7f2c862

Please sign in to comment.