@burh/nuxt-core 1.0.384 → 1.0.385
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.
- package/components/argon-core/Inputs/DropzoneFileUpload.vue +11 -0
- package/components/argon-core/Inputs/DropzoneVideoUpload.vue +138 -0
- package/components/burh-ds/Cards/RecruitmentCard.vue +243 -243
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvLeftSide.vue +516 -516
- package/components/burh-ds/Filters/FilterWithDropdown.vue +28 -8
- package/package.json +1 -1
|
@@ -109,6 +109,11 @@ export default {
|
|
|
109
109
|
to { opacity: 1; }
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
@keyframes slideInUp {
|
|
113
|
+
from { opacity: 0; transform: translateY(20px) }
|
|
114
|
+
to { opacity: 1; transform: translateY(0) }
|
|
115
|
+
}
|
|
116
|
+
|
|
112
117
|
@keyframes dropdownAnimation {
|
|
113
118
|
from {
|
|
114
119
|
margin-top: -5px;
|
|
@@ -150,18 +155,33 @@ export default {
|
|
|
150
155
|
background: #fff;
|
|
151
156
|
animation: 0.5s dropdownAnimation cubic-bezier(0.65, 0.05, 0.36, 1);
|
|
152
157
|
border: 1px solid #e9ecef;
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
@media (min-width: 821px) {
|
|
159
|
+
&.dropdown-left {
|
|
160
|
+
transform: none;
|
|
161
|
+
left: 0;
|
|
162
|
+
}
|
|
163
|
+
&.dropdown-right {
|
|
164
|
+
transform: none;
|
|
165
|
+
left: initial;
|
|
166
|
+
right: 10px;
|
|
167
|
+
}
|
|
161
168
|
}
|
|
162
169
|
&__content {
|
|
163
170
|
padding: 20px;
|
|
164
171
|
}
|
|
172
|
+
@media (max-width: 820px) {
|
|
173
|
+
& {
|
|
174
|
+
position: fixed;
|
|
175
|
+
bottom: 0;
|
|
176
|
+
width: 98%;
|
|
177
|
+
margin: 0 auto;
|
|
178
|
+
left: 0!important;
|
|
179
|
+
right: 0!important;
|
|
180
|
+
bottom: 20px;
|
|
181
|
+
transform: translateX(0)!important;
|
|
182
|
+
animation: 0.35s slideInUp cubic-bezier(0.65, 0.05, 0.36, 1);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
165
185
|
}
|
|
166
186
|
|
|
167
187
|
.filter__item {
|