@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.
@@ -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
- &.dropdown-left {
154
- transform: none;
155
- left: 0;
156
- }
157
- &.dropdown-right {
158
- transform: none;
159
- left: initial;
160
- right: 10px;
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.384",
3
+ "version": "1.0.385",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {