@afeefa/vue-app 0.0.143 → 0.0.145
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.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.145
|
package/package.json
CHANGED
@@ -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:
|
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
|
}
|