this repo has no description
1.footer {
2 padding: 40px 0;
3 flex-grow: 0;
4 opacity: .5;
5
6 &__inner {
7 display: flex;
8 align-items: center;
9 justify-content: space-between;
10 margin: 0;
11 width: 760px;
12 max-width: 100%;
13
14 @media (--tablet) {
15 flex-direction: column;
16 }
17 }
18
19 a {
20 color: inherit;
21 }
22
23 .copyright {
24 display: flex;
25 flex-direction: row;
26 align-items: center;
27 font-size: 1rem;
28 color: var(--light-color-secondary);
29
30 &--user {
31 margin: auto;
32 text-align: center;
33 }
34
35 & > *:first-child:not(:only-child) {
36 margin-right: 10px;
37
38 @media (--tablet) {
39 border: none;
40 padding: 0;
41 margin: 0;
42 }
43 }
44
45 @media (--tablet) {
46 flex-direction: column;
47 margin-top: 10px;
48 }
49 }
50}