-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.css
More file actions
44 lines (37 loc) · 723 Bytes
/
index.css
File metadata and controls
44 lines (37 loc) · 723 Bytes
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
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
.buttons-wrapper {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 10px 0;
}
.buttons-right {
display: flex;
gap: 8px;
}
.dialog-buttons {
display: flex;
gap: 8px;
justify-content: flex-end;
}
.transaction--add {
color: #6b3;
font-weight: 600;
}
.transaction--update {
color: #4a71b9;
font-weight: 600;
}
.transaction--delete {
color: #ee4920;
font-weight: 600;
}
.error-banner {
background-color: #fee;
border: 1px solid #fcc;
border-radius: 4px;
color: #c00;
padding: 10px 15px;
margin-bottom: 10px;
}