Skip to content

Commit a32dfbb

Browse files
committed
Add new style for tabular numerals and update some styles for the main app content
1 parent 8c1e30b commit a32dfbb

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/App.scss

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#app {
2-
font-family: Avenir, Helvetica, Arial, sans-serif;
3-
-webkit-font-smoothing: antialiased;
4-
-moz-osx-font-smoothing: grayscale;
5-
text-align: center;
6-
color: #2c3e50;
7-
margin-top: 60px;
2+
font-family: Avenir, Helvetica, Arial, system-ui, sans-serif; //set default font family to Avenir or system-ui or sans-serif font
3+
font-variant-numeric: tabular-nums; //set numeric values to tabular numerals
4+
-webkit-font-smoothing: antialiased; //set font smoothing to antialiased text in WebKit browsers
5+
-moz-osx-font-smoothing: grayscale; //set font smoothing to grayscale in Firefox browsers
6+
text-align: center; //center the text display content
7+
color: #204060; //set text color to dark blue
8+
margin-top: 50px; //set top margin to 50 pixels
89
}

0 commit comments

Comments
 (0)