iconograph-ui 1.7.11 → 1.7.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/layout/Modal.svelte +9 -6
- package/package.json +1 -1
package/lib/layout/Modal.svelte
CHANGED
|
@@ -29,9 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
<style>
|
|
31
31
|
|
|
32
|
-
#bgk
|
|
33
|
-
opacity: 0;
|
|
34
|
-
@starting-style {#bgk {
|
|
32
|
+
#bgk {
|
|
35
33
|
position: fixed;
|
|
36
34
|
z-index: 100;
|
|
37
35
|
top: 0px;
|
|
@@ -47,6 +45,9 @@
|
|
|
47
45
|
opacity: 0;
|
|
48
46
|
}
|
|
49
47
|
}
|
|
48
|
+
#bgk.hidden {
|
|
49
|
+
opacity: 0;
|
|
50
|
+
@starting-style {
|
|
50
51
|
opacity: 1;
|
|
51
52
|
}
|
|
52
53
|
}
|
|
@@ -84,7 +85,7 @@
|
|
|
84
85
|
background-size: 24px auto;
|
|
85
86
|
background-repeat: no-repeat;
|
|
86
87
|
transition: all ease-in-out 0.10s;
|
|
87
|
-
position:
|
|
88
|
+
position: absolute;
|
|
88
89
|
top: 12px;
|
|
89
90
|
right: 12px;
|
|
90
91
|
z-index: 1000;
|
|
@@ -103,14 +104,16 @@
|
|
|
103
104
|
#bgk .container {
|
|
104
105
|
max-width: calc(100% - 0px);
|
|
105
106
|
max-height: calc(100vh - 0px);
|
|
107
|
+
height: 100%;
|
|
106
108
|
border-radius: 0px;
|
|
109
|
+
padding-top: 24px;
|
|
107
110
|
padding: 12px;
|
|
108
111
|
}
|
|
109
112
|
|
|
110
113
|
.cross {
|
|
111
114
|
position: fixed;
|
|
112
|
-
top:
|
|
113
|
-
right:
|
|
115
|
+
top: 24px;
|
|
116
|
+
right: 24px;
|
|
114
117
|
}
|
|
115
118
|
}
|
|
116
119
|
</style>
|