We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af2954f commit 8d9b7a2Copy full SHA for 8d9b7a2
1 file changed
src/ext/action-popup/Components/View.svelte
@@ -40,11 +40,12 @@
40
background-color: var(--color-bg-secondary);
41
display: flex;
42
flex-direction: column;
43
- left: 0;
44
position: absolute;
45
text-align: center;
46
top: 0;
+ left: 0;
47
width: 100%;
48
+ height: 100%;
49
z-index: 3;
50
}
51
@@ -71,6 +72,18 @@
71
72
73
.view__body {
74
flex-grow: 1;
75
+ overflow-y: auto;
76
position: relative;
77
78
+
79
+ /* ios */
80
+ @supports (-webkit-touch-callout: none) {
81
+ .view {
82
+ height: auto;
83
+ }
84
85
+ .view__body {
86
+ overflow-y: visible;
87
88
89
</style>
0 commit comments