@omnia/runtime 8.0.289-dev → 8.0.290-dev

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.
@@ -52,7 +52,7 @@
52
52
  .v-avatar {
53
53
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
54
54
  border-style: solid;
55
- border-width: thin;
55
+ border-width: 0;
56
56
  }
57
57
  .v-avatar--border {
58
58
  border-width: thin;
@@ -62,13 +62,16 @@
62
62
  margin: 0;
63
63
  padding: 0;
64
64
  width: 100%;
65
- height: 100%;
66
65
  max-width: 100%;
67
66
  max-height: 100%;
68
67
  overflow-y: auto;
69
68
  top: 0;
70
69
  left: 0;
71
70
  }
71
+ .v-dialog--fullscreen > .v-overlay__content,
72
+ .v-dialog--fullscreen > .v-overlay__content > form {
73
+ height: 100%;
74
+ }
72
75
  .v-dialog--fullscreen > .v-overlay__content > .v-card,
73
76
  .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
74
77
  .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
@@ -1209,7 +1209,7 @@ html.v-overlay-scroll-blocked {
1209
1209
  }
1210
1210
  .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
1211
1211
  height: 100%;
1212
- width: 1px;
1212
+ width: var(--v-infinite-margin-size, 1px);
1213
1213
  }
1214
1214
 
1215
1215
  .v-infinite-scroll--vertical {
@@ -1222,6 +1222,18 @@ html.v-overlay-scroll-blocked {
1222
1222
  width: 100%;
1223
1223
  }
1224
1224
 
1225
+ .v-infinite-scroll-intersect {
1226
+ pointer-events: none;
1227
+ margin-top: var(--v-infinite-margin);
1228
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
1229
+ }
1230
+ .v-infinite-scroll-intersect:nth-child(2) {
1231
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
1232
+ }
1233
+ .v-infinite-scroll-intersect:nth-last-child(2) {
1234
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
1235
+ }
1236
+
1225
1237
  .v-infinite-scroll__side {
1226
1238
  align-items: center;
1227
1239
  display: flex;