-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (56 loc) · 1.06 KB
/
styles.css
File metadata and controls
66 lines (56 loc) · 1.06 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
.github-commit-modal-buttons {
display: flex;
gap: 8px;
margin-top: 16px;
justify-content: flex-end;
}
.github-commit-card {
border: 1px solid var(--background-modifier-border);
border-radius: 8px;
padding: 16px;
margin: 8px 0;
background: var(--background-primary);
}
.github-commit-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.github-commit-avatar {
width: 32px;
height: 32px;
border-radius: 50%;
}
.github-commit-author-info {
display: flex;
flex-direction: column;
}
.github-commit-date {
font-size: 0.85em;
color: var(--text-muted);
}
.github-commit-message {
margin: 12px 0;
}
.github-commit-footer {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85em;
}
.github-commit-additions {
font-family: var(--font-monospace);
color: var(--color-green);
font-weight: 600;
}
.github-commit-deletions {
font-family: var(--font-monospace);
color: var(--color-red);
font-weight: 600;
}
.github-commit-sha {
color: var(--text-accent);
text-decoration: none;
font-weight: 500;
}