Skip to content

Commit bdf7a26

Browse files
author
Robin de Graaf
committed
Update welcome.phtml to animate properly
1 parent 9f63c61 commit bdf7a26

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Parable PHP Framework
22

3+
## 2.0.5
4+
5+
Best update ever!
6+
7+
_Changes_
8+
- Fix animation on welcome.phtml, it shouldn't have been animating `html {}`, made it all janky-looking 😂
9+
310
## 2.0.4
411

512
_Changes_

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Application
1919
{
2020
use BootableTrait;
2121

22-
public const VERSION = '2.0.3';
22+
public const VERSION = '2.0.5';
2323

2424
public const PLUGIN_BEFORE_BOOT = 'plugin_before_boot';
2525
public const PLUGIN_AFTER_BOOT = 'plugin_after_boot';

structure/welcome.phtml_template

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
font-weight: 100;
1212
font-size: 17px;
1313
color: #fff;
14-
15-
animation: 1s fade-in forwards;
1614
}
1715
@keyframes fade-in {
1816
from {opacity: 0;}
@@ -21,6 +19,9 @@
2119
html, body {
2220
margin: 0;
2321
}
22+
body {
23+
animation: 1s fade-in forwards;
24+
}
2425
h2 {
2526
font-weight: bold;
2627
font-size: 1.2rem;

0 commit comments

Comments
 (0)