mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-21 11:31:46 +00:00
Automator Tab Sizing
This commit is contained in:
parent
57a369c69f
commit
ac3636cf1d
@ -1,6 +1,8 @@
|
||||
<script>
|
||||
import SplitPane from "vue-splitpane";
|
||||
|
||||
import { STEAM } from "@/env";
|
||||
|
||||
import AutomatorDocs from "./AutomatorDocs";
|
||||
import AutomatorEditor from "./AutomatorEditor";
|
||||
import AutomatorPointsList from "./AutomatorPointsList";
|
||||
@ -28,7 +30,8 @@ export default {
|
||||
},
|
||||
tabClass() {
|
||||
if (!this.fullScreen) return undefined;
|
||||
return "c-automator-tab--full-screen";
|
||||
else if (STEAM) return "c-automator-tab--full-screen-s"
|
||||
else return "c-automator-tab--full-screen";
|
||||
},
|
||||
fullScreenIconClass() {
|
||||
return this.fullScreen ? "fa-compress-arrows-alt" : "fa-expand-arrows-alt";
|
||||
@ -139,4 +142,14 @@ export default {
|
||||
margin-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.c-automator-tab--full-screen-s .c-automator-split-pane {
|
||||
width: 95vw;
|
||||
height: 70%;
|
||||
left: 2.5vw;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 5;
|
||||
margin-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
</style>
|
||||
|
@ -11,6 +11,8 @@ import { SteamRuntime } from "@/steam";
|
||||
import PrimaryButton from "@/components/PrimaryButton";
|
||||
import ShopButton from "./ShopButton";
|
||||
|
||||
import { PlayFab } from "@/steam/bindings/PlayFabClientApi";
|
||||
|
||||
export default {
|
||||
name: "ShopTab",
|
||||
components: {
|
||||
@ -48,6 +50,9 @@ export default {
|
||||
},
|
||||
hiddenName() {
|
||||
return player.options.hideGoogleName;
|
||||
},
|
||||
playfabActive(){
|
||||
return PlayFab.ClientApi.IsClientLoggedIn()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@ -131,6 +136,7 @@ export default {
|
||||
>
|
||||
<template v-if="STEAM">
|
||||
You are logged in as {{ username }}.
|
||||
<div v-if="!playfabActive">You are currently not fully logged into Steam. Please reopen the game from the Steam app if your purchases are not showing accurately.</div>
|
||||
</template>
|
||||
<template v-else>
|
||||
<span v-if="hiddenName">You are logged in. <i>(name hidden)</i></span>
|
||||
|
@ -1,11 +1,11 @@
|
||||
// Replace the following with your app's Firebase project configuration
|
||||
// See: https://firebase.google.com/docs/web/learn-more#config-object
|
||||
export const firebaseConfig = {
|
||||
"apiKey": null,
|
||||
"authDomain": null,
|
||||
"databaseURL": null,
|
||||
"projectId": null,
|
||||
"storageBucket": null,
|
||||
"messagingSenderId": null,
|
||||
"appId": null,
|
||||
"apiKey": "AIzaSyDuRTTluAFufmvw1zxGH6fsyEHmmbu8IHI",
|
||||
"authDomain": "antimatter-dimensions-a00f2.firebaseapp.com",
|
||||
"databaseURL": "https://antimatter-dimensions-a00f2.firebaseio.com",
|
||||
"projectId": "antimatter-dimensions-a00f2",
|
||||
"storageBucket": "antimatter-dimensions-a00f2.appspot.com",
|
||||
"messagingSenderId": "904798020003",
|
||||
"appId": "1:904798020003:web:d1448dcb2dedd8b5",
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user