Skip to content

Commit

Permalink
2023.10.06.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oiimrosabel committed Oct 6, 2023
1 parent 14f8f4b commit 7188885
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions src/assets/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@

@keyframes Blur {
from {
opacity: 0;
transform: translateY(64px);
filter: blur(10px);
}

to {
opacity: 1;
transform: translateY(0);
filter: blur(0);
}
}
3 changes: 1 addition & 2 deletions src/components/Creator/Dummy/DummyHero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ for (let elem in params) {
}
.hero > div {
min-width: 500px;
max-width: 600px;
width: 600px;
display: flex;
flex-direction: column;
align-items: stretch;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero/CustomFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<template>
<div class="footer">
<p>Made with ❤️ using <a href="https://github.com/lonelynerd/PrettyHeroes">PrettyHeroes</a></p>
<p>Made with ❤️, ☄️ and 🦕 using <a href="https://github.com/lonelynerd/PrettyHeroes">PrettyHeroes</a></p>
</div>
</template>

Expand Down
3 changes: 1 addition & 2 deletions src/views/HeroPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ function showElem(val) {
}
.hero > div {
min-width: 500px;
max-width: 600px;
width: 600px;
display: flex;
flex-direction: column;
align-items: stretch;
Expand Down
7 changes: 5 additions & 2 deletions src/views/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,17 +165,20 @@ document.querySelector("meta[name~='og:description']").setAttribute("content", `
}
.query > * {
padding: 16px 20px;
padding: 16px 24px;
border-radius: 999px;
font-size: 1em;
font-weight: bold;
border: none;
background: var(--bg);
color: var(--text);
display: flex;
justify-content: center;
align-items: center;
}
.query > * > img {
height: 1em;
height: 1.25em;
}
.query > input {
Expand Down

0 comments on commit 7188885

Please sign in to comment.