-
Notifications
You must be signed in to change notification settings - Fork 245
/
Copy pathindex.module.scss
54 lines (45 loc) · 1012 Bytes
/
index.module.scss
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
@use "@pythnetwork/component-library/theme";
.toolbarContainer {
display: flex;
flex-flow: row nowrap;
gap: theme.spacing(2);
}
.feedKey {
margin: 0 -#{theme.button-padding("xs", true)};
}
.featuredFeeds {
display: flex;
flex-flow: column nowrap;
align-items: stretch;
@include theme.breakpoint("md") {
flex-flow: row nowrap;
& > * {
flex: 1 1 0px;
width: 0;
}
}
}
.featuredFeeds {
gap: theme.spacing(1);
.feedCardContents {
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: stretch;
padding: theme.spacing(3);
gap: theme.spacing(6);
.prices {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
color: theme.color("heading");
font-weight: theme.font-weight("medium");
line-height: 1;
font-size: theme.font-size("base");
.changePercent {
font-size: theme.font-size("sm");
}
}
}
}