This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias zsh="phpstorm ~/.zshrc" | |
alias a="ddev artisan" | |
alias dl="ddev launch" | |
alias retry="a migrate:rollback && a migrate" | |
alias as="a db:seed" | |
alias am="a migrate" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.fade-in { | |
animation: fade-in .2s ease-in-out; | |
animation-fill-mode: forwards; | |
opacity: 0; | |
transform: scale(0.96); | |
} | |
@keyframes fade-in { | |
100% { | |
transform: scale(1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.fade-in { | |
animation: fade-in .2s ease-in-out; | |
animation-fill-mode: forwards; | |
opacity: 0; | |
transform: scale(0.96); | |
} | |
@keyframes fade-in { | |
100% { | |
transform: scale(1); |