Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
updates default font styles
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Aug 30, 2017
1 parent 116bb13 commit 091d848
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion src/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export default class Button extends BaseClass {
super();

this._buttonStyle = {
margin: "0 5px"
"font-family": "'Roboto', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif",
"font-size": "14px",
"margin": "0 5px"
};
this._data = [];
this._text = accessor("text");
Expand Down
8 changes: 4 additions & 4 deletions src/Radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ export default class Radio extends BaseClass {
super();

this._labelStyle = {
"font-family": "Verdana",
"font-size": "12px",
"font-family": "'Roboto', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif",
"font-size": "14px",
"padding-right": "5px"
};
this._legendStyle = {
"font-family": "Verdana",
"font-size": "12px",
"font-family": "'Roboto', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif",
"font-size": "14px",
"padding-right": "5px"
};
this._options = [];
Expand Down
12 changes: 6 additions & 6 deletions src/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ export default class Select extends BaseClass {
super();

this._labelStyle = {
"font-family": "Verdana",
"font-size": "12px",
"font-family": "'Roboto', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif",
"font-size": "14px",
"margin-right": "5px"
};
this._options = [];
this._optionStyle = {
"font-family": "Verdana",
"font-size": "12px"
"font-family": "'Roboto', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif",
"font-size": "14px"
};
this._selectStyle = {
"background": "#fafafa",
"border": "1px solid #ccc",
"border-radius": "0",
"font-family": "Verdana",
"font-size": "12px",
"font-family": "'Roboto', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif",
"font-size": "14px",
"outline": "0",
"padding": "3px 5px 4px"
};
Expand Down

0 comments on commit 091d848

Please sign in to comment.