diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-09-23 18:11:58 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-09-23 18:11:58 +0200 |
commit | c92194127049904421646b0df84788d6f533a844 (patch) | |
tree | 1f534a905c5a3745893fb4ee90fda2271a3e24d4 | |
parent | 614c305a03b3cb7ea9e0cbe980d66a1129dcca4b (diff) | |
download | FlightCore-c92194127049904421646b0df84788d6f533a844.tar.gz FlightCore-c92194127049904421646b0df84788d6f533a844.zip |
feat: add additional styles for window control buttons
-rw-r--r-- | src-vue/src/App.vue | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src-vue/src/App.vue b/src-vue/src/App.vue index 4fb6f0ce..e0f6741b 100644 --- a/src-vue/src/App.vue +++ b/src-vue/src/App.vue @@ -65,6 +65,14 @@ import PlayView from './views/PlayView.vue'; border: none; } +#fc_window__controls > button:hover { + color: #c6c9ce; +} + +#fc_window__controls > button:active { + color: #56585a; +} + #fc_window__controls > button:last-of-type { margin-right: 20px; } |