-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathfooter.styles.ts
More file actions
75 lines (66 loc) · 1.52 KB
/
footer.styles.ts
File metadata and controls
75 lines (66 loc) · 1.52 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { css } from 'emotion';
import { theme } from 'core/theme';
const { palette, spacing, breakpoints } = theme;
const color = palette.customPalette;
export const footerContainer = css`
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: ${color.secondary};
`;
export const logoContainer = css`
display: flex;
justify-content: center;
align-items: center;
`;
export const bottomContainer = css`
display: flex;
justify-content: space-between;
padding: ${spacing(3)};
border-top: 1px solid ${color.primary};
@media (max-width: ${breakpoints.values.xs}px) {
flex-direction: column;
justify-content: center;
align-items: center;
}
`;
export const lemoncodeIcon = css`
max-width: 100px;
padding: ${spacing(3)} 0;
`;
export const iconContainer = css`
display: flex;
justify-content: space-between;
width: 50%;
margin: 0;
padding: 0 0 ${spacing(1)};
list-style: none;
@media (min-width: ${breakpoints.values.sm}px) {
width: 20%;
}
@media (min-width: ${breakpoints.values.lg}px) {
width: 10%;
}
`;
export const icon = css`
font-size: 1.5rem;
color: ${color.greyLight};
&:hover {
cursor: pointer;
color: ${color.primary};
}
`;
export const githubIcon = css`
height: ${spacing(2.75)};
fill: ${color.greyLight};
&:hover {
cursor: pointer;
fill: ${color.primary};
}
`;
export const copyright = css`
color: ${color.greyLight};
@media (max-width: ${breakpoints.values.xs}px) {
margin-top: ${spacing(0.8)};
}
`;