Skip to content

Commit ca65357

Browse files
committed
Remove deprecation warning
1 parent fc088bd commit ca65357

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/styles/_supported-device-table.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@use 'sass:math';
12
@use './colors';
23

34
$row-height: 64px;
@@ -175,7 +176,7 @@ $see-all-button-height: 30px;
175176
0 1px 1px 0 rgb(16 27 37 / 10%),
176177
0 1px 8px 0 rgb(46 69 82 / 12%);
177178
position: absolute;
178-
bottom: -($row-height - $see-all-button-height - $row-padding) / 2;
179+
bottom: math.div(-($row-height - $see-all-button-height - $row-padding), 2) or calc(-1 * ($row-height - $see-all-button-height - $row-padding) / 2);
179180
left: 50%;
180181
transform: translate(-50%, -47px);
181182
z-index: 3;

0 commit comments

Comments
 (0)