-
Notifications
You must be signed in to change notification settings - Fork 11
/
story-list.css
55 lines (48 loc) · 841 Bytes
/
story-list.css
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
.stories-list-wrapper {
position: relative;
border-bottom: 1px solid var(--color-border-primary) !important;
height: 105px;
}
.stories-list {
overflow-x: scroll;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
}
.stories-list::after {
content: '';
clear: both;
display: table;
}
.user-story {
margin-right: 20px;
text-align: center;
width: 64px;
}
.user-story button {
background: 0;
border: 0;
cursor: pointer;
padding: 0;
width: 64px;
}
.user-story button div.img-wrapper {
border: solid 4px #0366d6;
border-radius: 50%;
height: 64px;
width: 64px;
margin-bottom: 3px;
}
.user-story .user-story-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
}
img.user-story-img {
border-radius: 50%;
width: 56px;
}