adata-ui 0.3.11 → 0.3.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1,19 +1,6 @@
1
1
  *:focus {
2
2
  outline: none;
3
3
  }
4
- .mobile {
5
- display: none;
6
- @media(max-width: 1025px) {
7
- display: block;
8
- }
9
- }
10
- .desktop {
11
- display: block;
12
- @media(max-width: 1025px) {
13
- display: none;
14
- }
15
- }
16
-
17
4
  .adt-text-block {
18
5
  $self: &;
19
6
  position: relative;
@@ -2,7 +2,7 @@
2
2
  <footer class="a-footer" :class="[{'paddinged': hasBottomMenu}]">
3
3
  <div class="a-footer__top">
4
4
  <div class="nav">
5
- <a class="adata-logo mobile" href="https://adata.kz">
5
+ <a class="adata-logo" href="https://adata.kz">
6
6
  <svg fill="#2C3E50" xmlns="http://www.w3.org/2000/svg"
7
7
  viewBox="0 0 166 48" version="1.1">
8
8
  <path
@@ -132,12 +132,17 @@ a {
132
132
  }
133
133
 
134
134
  .adata-logo {
135
+ display: none;
136
+ @media(max-width: 1025px) {
137
+ display: flex;
135
138
  svg {
136
139
  width: 77px;
137
140
  height: 24px;
138
141
  }
142
+ }
139
143
  }
140
144
 
145
+
141
146
  .nav {
142
147
  width: 100%;
143
148
  display: flex;
@@ -158,6 +163,13 @@ a {
158
163
  font-size: 12px;
159
164
  }
160
165
 
166
+ }
167
+ .desktop {
168
+ display: block;
169
+ @media(max-width: 1025px) {
170
+ display: none;
171
+ }
172
+
161
173
  &:hover {
162
174
  color: #9da3ac;
163
175
  }
@@ -262,6 +274,13 @@ a {
262
274
  line-height: 20px;
263
275
  color: #71757a;
264
276
 
277
+
278
+ }
279
+ .mobile {
280
+ display: none;
281
+ @media(max-width: 1025px) {
282
+ display: block;
283
+ }
265
284
  }
266
285
  }
267
286