Skip to content

Commit 38846fe

Browse files
committed
feat: Styling on PieceIcons
1 parent cf62762 commit 38846fe

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

packages/webui/src/client/ui/PieceIcons/PieceIcons.scss

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// Variables
22
$text-color: #ffffff;
3-
$font-size-base: 75px;
3+
$font-size-base: 70px;
44
$text-shadow: 0 2px 9px rgba(0, 0, 0, 0.5);
5+
$letter-spacing: 0.02em;
56

67
// Base icon styles
78
.piece-icon {
@@ -77,16 +78,17 @@ $text-shadow: 0 2px 9px rgba(0, 0, 0, 0.5);
7778
// Common text styles
7879
.piece-icon-text {
7980
fill: $text-color;
80-
font-family: 'Open Sans', sans-serif;
81+
font-family: Roboto Condensed, Roboto, sans-serif;
8182
font-size: 40px;
8283

8384
filter: drop-shadow($text-shadow);
8485

8586
.label {
8687
fill: $text-color;
87-
font-family: Roboto, sans-serif;
88+
font-family: Roboto Condensed, Roboto, sans-serif;
8889
font-size: $font-size-base;
89-
font-weight: 100;
90+
font-weight: 300;
91+
letter-spacing: $letter-spacing;
9092
}
9193
}
9294
}

0 commit comments

Comments
 (0)