Skip to content

Commit

Permalink
fix: GWT editor font size (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Jan 18, 2018
1 parent 676e177 commit e59eb6e
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -73,16 +73,16 @@ Removes some of the styling on the page-level splitters
font-size: 16px;
}

.THEMES_DEFAULT {
font-size: 16px;
.THEMES_DEFAULT, .THEMES_DEFAULT .TableEditorCell-Target pre, .THEMES_DEFAULT .TableEditorCell-Target textarea {
font-size: 16px !important;
}

.THEMES_COMPACT {
font-size: 14px;
.THEMES_COMPACT, .THEMES_COMPACT .TableEditorCell-Target pre, .THEMES_COMPACT .TableEditorCell-Target textarea {
font-size: 14px !important;
}

.THEMES_LOOSE {
font-size: 20px;
.THEMES_LOOSE, .THEMES_LOOSE .TableEditorCell-Target pre, .THEMES_LOOSE .TableEditorCell-Target textarea {
font-size: 20px !important;
}

.sourceContentsContainer .g--tight {
Expand Down

0 comments on commit e59eb6e

Please sign in to comment.