File tree Expand file tree Collapse file tree 4 files changed +24
-7
lines changed
packages/design-system/src/css
workbench/extensions/manager/components/manager/packCard Expand file tree Collapse file tree 4 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -746,7 +746,10 @@ button.comfy-queue-btn {
746
746
747
747
@media only screen and (max-height : 850px ) {
748
748
.comfy-menu {
749
- inset : 0 0 0 auto !important ;
749
+ top : 0 !important ;
750
+ bottom : 0 !important ;
751
+ left : auto !important ;
752
+ right : 0 !important ;
750
753
border-radius : 0 ;
751
754
}
752
755
@@ -809,7 +812,10 @@ dialog::backdrop {
809
812
}
810
813
811
814
.comfy-dialog .comfyui-dialog .comfy-modal {
812
- inset : 0 ;
815
+ top : 0 ;
816
+ left : 0 ;
817
+ right : 0 ;
818
+ bottom : 0 ;
813
819
transform : none;
814
820
}
815
821
@@ -821,7 +827,8 @@ dialog::backdrop {
821
827
}
822
828
823
829
.comfy-dialog .comfy-modal-content {
824
- flex-flow : row wrap;
830
+ flex-direction : row;
831
+ flex-wrap : wrap;
825
832
gap : 10px ;
826
833
color : var (--fg-color );
827
834
}
@@ -893,7 +900,8 @@ dialog::backdrop {
893
900
overflow : hidden;
894
901
display : flex;
895
902
flex-wrap : wrap;
896
- place-content : flex-start center;
903
+ align-content : flex-start;
904
+ justify-content : center;
897
905
}
898
906
899
907
.comfy-img-preview img {
Original file line number Diff line number Diff line change @@ -147,7 +147,10 @@ onMounted(async () => {
147
147
<style scoped>
148
148
.help-center-backdrop {
149
149
position : absolute ;
150
- inset : 0 ;
150
+ top : 0 ;
151
+ left : 0 ;
152
+ right : 0 ;
153
+ bottom : 0 ;
151
154
z-index : 9999 ;
152
155
background : transparent ;
153
156
}
Original file line number Diff line number Diff line change 39
39
/* Popup */
40
40
.comfyui-popup {
41
41
position : absolute;
42
- inset : var (--top ) var (--right ) var (--bottom ) var (--left );
42
+ top : var (--top );
43
+ right : var (--right );
44
+ bottom : var (--bottom );
45
+ left : var (--left );
43
46
z-index : 2000 ;
44
47
max-height : calc (100vh - var (--limit ) - 10px );
45
48
box-shadow : 3px 3px 5px 0 rgb (0 0 0 / 0.3 );
Original file line number Diff line number Diff line change @@ -137,7 +137,10 @@ const formattedLatestVersionDate = computed(() => {
137
137
.selected-card ::after {
138
138
content : ' ' ;
139
139
position : absolute ;
140
- inset : 0 ;
140
+ top : 0 ;
141
+ left : 0 ;
142
+ right : 0 ;
143
+ bottom : 0 ;
141
144
border : 4px solid var (--p-primary-color );
142
145
border-radius : 0.5rem ;
143
146
pointer-events : none ;
You can’t perform that action at this time.
0 commit comments