app: add empty alternate to icons in scss

We are using font icons, so we don't want screen readers to try to read
them.
This commit is contained in:
David Lechner
2022-12-16 17:54:36 -06:00
committed by David Lechner
parent 9944725be6
commit 2810088889
+2 -2
View File
@@ -108,7 +108,7 @@ $dark-splitter-color-hover: color.adjust(
$height: 2.7;
$radius: 0.4;
content: map.get(bpi.$blueprint-icon-codepoints, 'drag-handle-vertical');
content: map.get(bpi.$blueprint-icon-codepoints, 'drag-handle-vertical') / '';
height: bp.$pt-grid-size * $height;
width: bp.$pt-grid-size * $width;
top: calc(50% - bp.$pt-grid-size * $height * 0.5);
@@ -118,7 +118,7 @@ $dark-splitter-color-hover: color.adjust(
$width: 2.7;
$height: 1.4;
content: map.get(bpi.$blueprint-icon-codepoints, 'drag-handle-horizontal');
content: map.get(bpi.$blueprint-icon-codepoints, 'drag-handle-horizontal') / '';
height: bp.$pt-grid-size * $height;
width: bp.$pt-grid-size * $width;
top: bp.$pt-grid-size * $height * -0.5 + 2px;