Skip to content

Commit

Permalink
Update welcome.phtml to animate properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin de Graaf committed Oct 8, 2021
1 parent 9f63c61 commit bdf7a26
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Parable PHP Framework

## 2.0.5

Best update ever!

_Changes_
- Fix animation on welcome.phtml, it shouldn't have been animating `html {}`, made it all janky-looking 😂

## 2.0.4

_Changes_
Expand Down
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Application
{
use BootableTrait;

public const VERSION = '2.0.3';
public const VERSION = '2.0.5';

public const PLUGIN_BEFORE_BOOT = 'plugin_before_boot';
public const PLUGIN_AFTER_BOOT = 'plugin_after_boot';
Expand Down
5 changes: 3 additions & 2 deletions structure/welcome.phtml_template
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
font-weight: 100;
font-size: 17px;
color: #fff;

animation: 1s fade-in forwards;
}
@keyframes fade-in {
from {opacity: 0;}
Expand All @@ -21,6 +19,9 @@
html, body {
margin: 0;
}
body {
animation: 1s fade-in forwards;
}
h2 {
font-weight: bold;
font-size: 1.2rem;
Expand Down

0 comments on commit bdf7a26

Please sign in to comment.