Skip to content

Commit

Permalink
Beg for GitHub stars in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Scriptim committed Jan 26, 2024
1 parent 864916e commit 4b3cec5
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,20 @@
<div id="properties" :style="{ visibility: visibleState }">
<ElementProperties></ElementProperties>
</div>
<div id="output" :style="{ visibility: visibleState }">
<div id="output" :style="{ visibility: visibleState, height: visibleState === 'hidden' ? 0 : undefined }">
<PS1Variable></PS1Variable>
<br />
<PromptPreview></PromptPreview>
</div>
</div>
<footer>If you like this project, please consider leaving a &#x2b50; on
<a
href="https://github.com/Scriptim/bash-prompt-generator"
target="_blank"
rel="noopener noreferrer"
>
GitHub
</a>.</footer>
</main>
</template>

Expand Down Expand Up @@ -139,7 +147,7 @@ a
.dark
a
color: lighten($color-accent, 20%)
color: lighten($color-accent, 5%)
br
user-select: none
Expand Down Expand Up @@ -179,4 +187,10 @@ input[type="number"]
.flex-wrapper
padding: 0.8em
footer
margin: 0
font-style: italic
text-align: center
padding: 4em 0.2em 2em
</style>

1 comment on commit 4b3cec5

@jxu
Copy link

@jxu jxu commented on 4b3cec5 Mar 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At least you're honest about it

Please sign in to comment.