Skip to content
Snippets Groups Projects
contact.scss 329 B
Newer Older
AB0410's avatar
AB0410 committed
@import url(navbar.scss);

.parent {
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.parent{
    display: flex;
    align-items: center;
    height: 80vh;
}