diff options
author | Wu Cheng-Han | 2016-08-15 11:01:00 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2016-08-15 11:01:00 +0800 |
commit | 93ff287799a4e5412666df104c4dbea213300d93 (patch) | |
tree | c776b6b24dedaf966d2b520fb858aa6ae9d30541 | |
parent | ecd7218917184cdd755774aa779dfa72e95233c1 (diff) |
Fix text-shadow for text antialiased might cause IE or Edge text cutoff
Diffstat (limited to '')
-rw-r--r-- | public/css/site.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/css/site.css b/public/css/site.css index e7702c46..73fcd18d 100644 --- a/public/css/site.css +++ b/public/css/site.css @@ -4,7 +4,7 @@ body { font-smoothing: subpixel-antialiased !important; -webkit-font-smoothing: subpixel-antialiased !important; -moz-osx-font-smoothing: auto !important; - text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004); + text-shadow: 1px 1px 1.1px rgba(0, 0, 0, 0.004); /*text-rendering: optimizeLegibility;*/ -webkit-overflow-scrolling: touch; font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; |