summaryrefslogtreecommitdiff
path: root/assets/css/footer.css
blob: 88d705c7deef052d406d4f386c6ed7554472405e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* FOOTER */
.site__footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: var(--gap-medium);

    @media (max-width: 768px) {
        flex-direction: column;
        gap: var(--gap-default);
    }
}

.follow-me-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-medium);

    @media (max-width: 768px) {
        flex-wrap: wrap;
    }
}

/* Footer Icons */
.follow-me-item img {
    object-fit: contain;
    height: 2rem;
    width: 2rem;
}