-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookingDebugPage.module.scss
More file actions
74 lines (64 loc) · 1.03 KB
/
BookingDebugPage.module.scss
File metadata and controls
74 lines (64 loc) · 1.03 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
.container {
padding: 2rem;
font-family: sans-serif;
display: flex;
flex-direction: column;
gap: 2rem;
}
.formGrid {
display: grid;
gap: 1rem;
max-width: 450px;
}
.submitButton {
width: 100%;
margin-top: 1rem;
}
.jsonBlock {
background: #111;
color: #0ff;
padding: 1rem;
border-radius: 8px;
overflow-x: auto;
margin-top: 1rem;
}
.debugOutput {
grid-column: 1 / -1;
background: #1a1a2e;
color: #eee;
padding: 1rem;
border-radius: 8px;
border-left: 4px solid #6366f1;
h4 {
margin: 0 0 0.75rem;
font-size: 0.95rem;
}
pre {
margin: 0;
white-space: pre-wrap;
font-size: 0.85rem;
}
}
.errorMessage {
color: #ef4444;
}
.bookedSlotsTable {
grid-column: 1 / -1;
background: #1a1a2e;
color: #eee;
padding: 1rem;
border-radius: 8px;
border-left: 4px solid #22c55e;
h4 {
margin: 0 0 0.75rem;
font-size: 0.95rem;
}
}
.bookedSlotsTableBody {
th,
td {
background: #252540 !important;
color: #eee !important;
border-color: #3f3f5a !important;
}
}