-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
73 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
/* Remove NodeCG's default margin added to the body. | ||
This is because otherwise v-tooltip position is broken since Vuetify v2.5.2 with it. */ | ||
body { | ||
margin: 0; | ||
} | ||
|
||
/* So the <v-app> always has a transparent background, | ||
otherwise it looks odd in the NodeCG dashboard panels. */ | ||
.v-application { | ||
background-color: transparent !important; | ||
} | ||
|
||
/* So the <v-app> doesn't take up 100% height which breaks | ||
in the NodeCG dashboard panels anyway. */ | ||
.v-application--wrap { | ||
/* So the <v-app> doesn't take up 100% height which breaks | ||
in the NodeCG dashboard panels anyway. */ | ||
min-height: 0 !important; | ||
|
||
/* Re-add the margin from above to this wrapper instead. */ | ||
margin: 15px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ const options: RunDataOption[] = [ | |
predict: [ | ||
'system', | ||
'platform', | ||
'console', | ||
], | ||
}, | ||
{ | ||
|