diff options
author | Eugen <eugen@zeonfederated.com> | 2017-01-27 18:41:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-27 18:41:05 +0100 |
commit | 2a6773d59bb09c1a63d8dc7c20d9bd985bc0c855 (patch) | |
tree | f963320a923533b859c706cc3f57b7f7c8f7ace5 | |
parent | dc3e0529ca577425a4171d5864134fa9320cb5bf (diff) | |
parent | 6c37285580a31045143e20ea54713db506789d57 (diff) |
Merge pull request #557 from hoodiek/master
fix button outline showing on clicks for prettiness
-rw-r--r-- | app/assets/stylesheets/application.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 337b7d358..6b95484fe 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -110,6 +110,10 @@ body { font-feature-settings: "kern"; text-size-adjust: none; + button:focus { + outline: none !important; + } + &.app-body { position: fixed; width: 100%; |