Fix Big Crunch button jitter

This commit is contained in:
SpectralFlame 2022-09-29 10:58:26 -05:00 committed by cyip92
parent 8f291507e6
commit a952f949f3
2 changed files with 8 additions and 10 deletions

View File

@ -544,10 +544,6 @@ body.t-s9 {
animation: a-tesseract-shift-dark 5s infinite;
}
.l-new-ui-big-crunch__container {
margin-top: 2rem;
}
.information-header {
font-size: 1.2rem;
font-weight: bold;

View File

@ -25,11 +25,11 @@ export default {
<template>
<span v-if="shouldDisplay">
<div
v-if="isModern"
class="l-new-ui-big-crunch__container"
>
<h3 v-if="!smallCrunch">
<div v-if="isModern">
<h3
v-if="!smallCrunch"
class="l-spacing"
>
The world has collapsed due to excess antimatter.
</h3>
<button
@ -65,5 +65,7 @@ export default {
</template>
<style scoped>
.l-spacing {
margin-top: 1rem;
}
</style>