Resolves CSS font bug identified by sonar cloud

This commit is contained in:
Aaron Louie 2020-02-08 11:40:34 -05:00
parent 36d4ab5437
commit 165a6f06e6
1 changed files with 2 additions and 2 deletions

View File

@ -3,13 +3,13 @@
width: 100%; width: 100%;
::ng-deep .djs-minimap:not(.open) .toggle:before { ::ng-deep .djs-minimap:not(.open) .toggle:before {
font-family: 'Material Icons'; font-family: 'Material Icons', sans-serif;
content: "map"; content: "map";
font-size: 24px; font-size: 24px;
} }
::ng-deep .djs-minimap.open .toggle:before { ::ng-deep .djs-minimap.open .toggle:before {
font-family: 'Material Icons'; font-family: 'Material Icons', sans-serif;
content: "close"; content: "close";
font-size: 24px; font-size: 24px;
} }