diff options
author | Simon Fondrie-Teitler <simonft@riseup.net> | 2017-05-18 23:37:51 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-19 13:09:59 +0200 |
commit | ee18bba52be78cebf1e34362aafe87f5746587ca (patch) | |
tree | 421d62594bb3a50b392fdf947ef5815b303af61e /ui/app | |
parent | 2a785f3c153d03057c0a26993dafc3b5f45714b6 (diff) |
[bug] fix flex styling for vpn indicator
The version of webkit we're using doesn't understand display: flex,
instead it needs display: -webkit-flex.
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/main_panel/main_panel.less | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/app/components/main_panel/main_panel.less b/ui/app/components/main_panel/main_panel.less index c530ea8..8b53d5c 100644 --- a/ui/app/components/main_panel/main_panel.less +++ b/ui/app/components/main_panel/main_panel.less @@ -71,6 +71,7 @@ border-bottom-left-radius: @accounts-corner - 1; z-index: 100; display: flex; + display: -webkit-flex; &:hover { background-color: #555; } |