TBartl / space-station-13-idle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable Cheats does not flip background

Eearslya opened this issue · comments

When cheats are enabled, a reversed class is applied to the content-wrapper to flip the background. However, the style specifies a background flip only if the reversed class is applied to the background div.

From ContentWrapper.vue:

<template>
  <div class="content-wrapper" :class="{reversed: reversed}">
    <div class="background"></div>
    <component :is="'content-' + visibleSidebarItem" class="w-100 big-bottom-margin" />
  </div>
</template>
.background.reversed {
  background-image: url("~@/assets/art/misc/background-alt-reversed.jpg");
}

Dang, you guys beat me to it...