adata-ui 0.2.2 → 0.2.3
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/README.md +7 -7
- package/babel.config.js +5 -5
- package/dist/adata-ui.common.js +67 -63
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +67 -63
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/public/index.html +17 -17
- package/src/components/Header/Header.vue +12 -0
- package/src/components/Header/Profile.vue +4 -0
- package/src/components/Header/ProfileMobile.vue +1 -1
- package/src/components/MailTo/MailTo.vue +3 -0
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
-
<link rel="icon" href="<%= BASE_URL %>logo.svg">
|
|
8
|
-
<title>Adata UI</title>
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<noscript>
|
|
12
|
-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
-
</noscript>
|
|
14
|
-
<div id="app"></div>
|
|
15
|
-
<!-- built files will be auto injected -->
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
+
<link rel="icon" href="<%= BASE_URL %>logo.svg">
|
|
8
|
+
<title>Adata UI</title>
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<noscript>
|
|
12
|
+
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
+
</noscript>
|
|
14
|
+
<div id="app"></div>
|
|
15
|
+
<!-- built files will be auto injected -->
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -873,6 +873,9 @@ export default {
|
|
|
873
873
|
justify-content: space-between;
|
|
874
874
|
box-shadow: -6px 4px 12px rgb(157 163 172 / 40%);
|
|
875
875
|
background: #fff;
|
|
876
|
+
@media (max-width: 1025px) {
|
|
877
|
+
justify-content: flex-start;
|
|
878
|
+
}
|
|
876
879
|
|
|
877
880
|
&__top {
|
|
878
881
|
&-left {
|
|
@@ -951,6 +954,9 @@ export default {
|
|
|
951
954
|
margin-top: auto;
|
|
952
955
|
position: relative;
|
|
953
956
|
z-index: 1000000;
|
|
957
|
+
@media (max-width: 1025px) {
|
|
958
|
+
height: 40px;
|
|
959
|
+
}
|
|
954
960
|
|
|
955
961
|
button.sign {
|
|
956
962
|
span {
|
|
@@ -962,6 +968,9 @@ export default {
|
|
|
962
968
|
|
|
963
969
|
.menu-wrapper__bottom {
|
|
964
970
|
margin: 80px 0 0;
|
|
971
|
+
@media (max-width: 1025px) {
|
|
972
|
+
margin: 0;
|
|
973
|
+
}
|
|
965
974
|
|
|
966
975
|
&-header {
|
|
967
976
|
background: rgba(189, 199, 206, 0.2);
|
|
@@ -985,6 +994,9 @@ export default {
|
|
|
985
994
|
justify-content: space-between;
|
|
986
995
|
gap: 12px;
|
|
987
996
|
margin-bottom: 36px;
|
|
997
|
+
@media (max-width: 1025px) {
|
|
998
|
+
margin-bottom: 0;
|
|
999
|
+
}
|
|
988
1000
|
}
|
|
989
1001
|
|
|
990
1002
|
&-row {
|