-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (47 loc) · 885 Bytes
/
styles.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
.stflow-container {
position: relative;
display: inline-block;
}
.stflow-fullscreen-icon {
position: absolute;
top: 0px;
right: 40px;
cursor: pointer;
z-index: 10;
font-size: 1.5rem;
color: var(--text-muted);
}
.stflow-fullscreen-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
}
.stflow-fullscreen-content {
position: relative;
width: 90vw;
height: 90vh;
background: white;
overflow: auto; /* Scroll if needed */
}
.stflow-fullscreen-close {
position: absolute;
top: 10px;
right: 10px;
font-size: 1.5rem;
cursor: pointer;
color: var(--text-muted);
}
.svelte-flow__attribution{
display: none;
}
.stflow-error{
color: red;
/* fontFamily: monospace; */
}