aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/style.css
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-10-25 14:43:02 +0200
committerGitHub <noreply@github.com>2022-10-25 14:43:02 +0200
commit20c92238a8ffb2bfd2b2ae6a208844434fb7ebfb (patch)
treef87e86a2af0e682e40fea66149166cb8a71aa434 /src-vue/src/style.css
parentd64c3b64c9623f341b761a692ac0012452c69d8f (diff)
downloadFlightCore-20c92238a8ffb2bfd2b2ae6a208844434fb7ebfb.tar.gz
FlightCore-20c92238a8ffb2bfd2b2ae6a208844434fb7ebfb.zip
feat: Show installed mods (#28)
Simply parses `enabledmods.json`. In the future we should also opt to check individual mods and compare with the JSON file.
Diffstat (limited to 'src-vue/src/style.css')
-rw-r--r--src-vue/src/style.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/src-vue/src/style.css b/src-vue/src/style.css
index 6fd4a793..6e00975d 100644
--- a/src-vue/src/style.css
+++ b/src-vue/src/style.css
@@ -1,3 +1,12 @@
+* {
+ box-sizing: border-box;
+}
+
+html, body {
+ height: 100%;
+ width: 100%;
+}
+
body {
margin: 0;
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
@@ -5,6 +14,12 @@ body {
user-select: none;
}
+#app {
+ position: relative;
+ height: 100%;
+ width: 100%;
+}
+
#fc_bg__container {
background: url(/src/assets/wallpaperflare.com_wallpaper.jpg) center no-repeat;
background-size: cover;