diff options
| author | Mark Otto <[email protected]> | 2011-12-27 16:50:27 -0600 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-27 16:50:27 -0600 |
| commit | 550879cf666ec6445d1918604cb71c7202a52999 (patch) | |
| tree | d0ed714752ac2831f7e93e0093e245c767761030 | |
| parent | e78d5f8ff33009e4c4ab57496913b43ff1e369dc (diff) | |
| download | bootstrap-550879cf666ec6445d1918604cb71c7202a52999.tar.xz bootstrap-550879cf666ec6445d1918604cb71c7202a52999.zip | |
fix quotes in font-family usage
| -rw-r--r-- | lib/mixins.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mixins.less b/lib/mixins.less index 58df9298a..83a3a31f9 100644 --- a/lib/mixins.less +++ b/lib/mixins.less @@ -54,13 +54,13 @@ #font { #family { .serif() { - font-family: "Georgia", Times New Roman, Times, serif; + font-family: Georgia, "Times New Roman", Times, serif; } .sans-serif() { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .monospace() { - font-family: "Menlo", Monaco, Courier New, monospace; + font-family: Menlo, Monaco, Courier New, monospace; } } .shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) { |
