diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-13 18:48:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 18:48:59 +0100 |
commit | 5a561f67b349d8216f5c1ea03221b8302b3902ae (patch) | |
tree | 129630dc10299d123da4b54b00131b4e201d0b0f /src-vue/src/App.vue | |
parent | efd4afaaa68fc9168b71cb0a8049ca38a8ed8d79 (diff) | |
download | FlightCore-5a561f67b349d8216f5c1ea03221b8302b3902ae.tar.gz FlightCore-5a561f67b349d8216f5c1ea03221b8302b3902ae.zip |
feat: Show stripped title bar on debug build (#48)
* feat: Show stripped title bar on debug build
Helps with differentiating which window is which when both developing
FlightCore and is using release version at the same time.
* fix: Only show striped menubar for debug builds
Diffstat (limited to 'src-vue/src/App.vue')
-rw-r--r-- | src-vue/src/App.vue | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src-vue/src/App.vue b/src-vue/src/App.vue index 5eeeb93b..c17b8817 100644 --- a/src-vue/src/App.vue +++ b/src-vue/src/App.vue @@ -103,6 +103,16 @@ export default { height: var(--fc-menu_height); } +.developer_build { + background: repeating-linear-gradient( + 45deg, + rgba(0, 0, 0, 0.2), + rgba(0, 0, 0, 0.2) 20px, + rgba(0, 0, 0, 0.3) 20px, + rgba(0, 0, 0, 0.3) 40px + ); +} + /* Window controls */ #fc_window__controls { display: flex; |