@afeefa/vue-app 0.0.143 → 0.0.144

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.143
1
+ 0.0.144
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.143",
3
+ "version": "0.0.144",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -19,8 +19,6 @@
19
19
  </div>
20
20
 
21
21
  <div id="flyingContextContainer__children" />
22
-
23
- <div class="v-navigation-drawer__border" />
24
22
  </div>
25
23
  </template>
26
24
 
@@ -99,22 +97,18 @@ export default class FlyingContextContainer extends Vue {
99
97
  right: 0;
100
98
  height: 100%;
101
99
  min-width: 400px;
102
- max-width: 50vw;
100
+ max-width: calc(100vw - 100px);
103
101
  top: 0;
104
102
  background: white;
105
103
  transition: right .2s;
106
104
  padding: 2rem;
107
105
  overflow-y: auto;
106
+ border-left: 1px solid rgba(0, 0, 0, .12);
108
107
 
109
108
  &:not(.visible) {
110
109
  right: -80vw;
111
110
  }
112
111
 
113
- .v-navigation-drawer__border {
114
- background-color: rgba(0, 0, 0, .12);
115
- left: 0;
116
- }
117
-
118
112
  .closeButton {
119
113
  margin: -1rem 0 2rem -1rem;
120
114
  }
@@ -192,7 +192,7 @@ export default class ListView extends Mixins(ListViewMixin) {
192
192
  margin-bottom: 2rem;
193
193
  }
194
194
 
195
- .a-table-row > :last-child {
195
+ :deep(.a-table-row > :last-child) {
196
196
  width: 100%;
197
197
  }
198
198