create-nizam-app 1.1.1 → 1.1.2
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/dist/__main__.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
1
|
/* ----------------------------------- *\
|
|
4
2
|
#index.css
|
|
5
3
|
\* ----------------------------------- */
|
|
@@ -12,38 +10,32 @@
|
|
|
12
10
|
#CUSTOM PROPERTY
|
|
13
11
|
\* ----------------------------------- */
|
|
14
12
|
:root {
|
|
15
|
-
|
|
16
13
|
/**
|
|
17
14
|
* colors
|
|
18
15
|
*/
|
|
19
|
-
--color-
|
|
16
|
+
--color-white: white;
|
|
20
17
|
|
|
21
18
|
/**
|
|
22
19
|
* typography
|
|
23
20
|
*/
|
|
24
|
-
--
|
|
25
|
-
|
|
26
|
-
--fs-num: value;
|
|
27
|
-
|
|
28
|
-
--fw-size: value;
|
|
21
|
+
--font-sans: sans-serif;
|
|
29
22
|
|
|
30
23
|
/**
|
|
31
24
|
* shadow
|
|
32
25
|
*/
|
|
33
|
-
--shadow: value;
|
|
26
|
+
/* --shadow: value; */
|
|
34
27
|
|
|
35
28
|
/**
|
|
36
29
|
* radius
|
|
37
30
|
*/
|
|
38
|
-
--radius-num: value;
|
|
31
|
+
/* --radius-num: value; */
|
|
39
32
|
|
|
40
33
|
/**
|
|
41
34
|
* transition
|
|
42
35
|
*/
|
|
43
|
-
--transition-name: value;
|
|
36
|
+
/* --transition-name: value; */
|
|
44
37
|
}
|
|
45
38
|
|
|
46
|
-
|
|
47
39
|
/* ----------------------------------- *\
|
|
48
40
|
#RESET
|
|
49
41
|
\* ----------------------------------- */
|
|
@@ -55,17 +47,23 @@
|
|
|
55
47
|
padding: 0;
|
|
56
48
|
box-sizing: border-box;
|
|
57
49
|
}
|
|
58
|
-
li {
|
|
50
|
+
li {
|
|
51
|
+
list-style: none;
|
|
52
|
+
}
|
|
59
53
|
a,
|
|
60
54
|
img,
|
|
61
55
|
span,
|
|
62
56
|
button,
|
|
63
|
-
ion-icon {
|
|
57
|
+
ion-icon {
|
|
58
|
+
display: block;
|
|
59
|
+
}
|
|
64
60
|
a {
|
|
65
61
|
color: inherit;
|
|
66
62
|
text-decoration: none;
|
|
67
63
|
}
|
|
68
|
-
img {
|
|
64
|
+
img {
|
|
65
|
+
height: auto;
|
|
66
|
+
}
|
|
69
67
|
input,
|
|
70
68
|
button {
|
|
71
69
|
background: none;
|
|
@@ -74,54 +72,59 @@ button {
|
|
|
74
72
|
color: inherit;
|
|
75
73
|
}
|
|
76
74
|
input,
|
|
77
|
-
table {
|
|
78
|
-
|
|
79
|
-
|
|
75
|
+
table {
|
|
76
|
+
width: 100%;
|
|
77
|
+
}
|
|
78
|
+
button {
|
|
79
|
+
cursor: pointer;
|
|
80
|
+
}
|
|
81
|
+
ion-icon {
|
|
82
|
+
pointer-events: none;
|
|
83
|
+
}
|
|
80
84
|
html {
|
|
81
85
|
font-family: var(--ff-name);
|
|
82
|
-
font-size: value;
|
|
86
|
+
/* font-size: value; */
|
|
83
87
|
scroll-behavior: smooth;
|
|
84
88
|
}
|
|
85
89
|
body {
|
|
86
|
-
background-color: var(--color-
|
|
87
|
-
color: var(--color-
|
|
88
|
-
font-size: value;
|
|
89
|
-
line-height: value;
|
|
90
|
+
background-color: var(--color-white);
|
|
91
|
+
color: var(--color-white);
|
|
92
|
+
/* font-size: value;
|
|
93
|
+
line-height: value; */
|
|
90
94
|
}
|
|
91
95
|
|
|
92
96
|
/**
|
|
93
97
|
* scrollbar
|
|
94
98
|
*/
|
|
95
|
-
|
|
99
|
+
/*
|
|
96
100
|
body.active { overflow-y: hidden; }
|
|
97
101
|
:focus-visible { outline-offset: value; }
|
|
98
102
|
::-webkit-scrollbar { width: value; }
|
|
99
|
-
::-webkit-scrollbar-track { background-color: var(--color-
|
|
100
|
-
::-webkit-scrollbar-thumb { background-color: var(--color-
|
|
101
|
-
::-webkit-scrollbar-thumb:hover { background-color: var(--color-
|
|
103
|
+
::-webkit-scrollbar-track { background-color: var(--color-white); }
|
|
104
|
+
::-webkit-scrollbar-thumb { background-color: var(--color-white); }
|
|
105
|
+
::-webkit-scrollbar-thumb:hover { background-color: var(--color-white); }
|
|
102
106
|
*/
|
|
103
107
|
|
|
104
|
-
|
|
105
108
|
/* ----------------------------------- *\
|
|
106
109
|
#MEDIA QUERIES
|
|
107
110
|
\* ----------------------------------- */
|
|
108
111
|
|
|
109
|
-
@media (min-width: 640px) {
|
|
110
|
-
|
|
112
|
+
@media (min-width: 640px) {
|
|
113
|
+
/* Mobile */
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
@media (min-width: 768px) {
|
|
114
|
-
|
|
116
|
+
@media (min-width: 768px) {
|
|
117
|
+
/* tablets */
|
|
115
118
|
}
|
|
116
119
|
|
|
117
120
|
@media (min-width: 1024px) {
|
|
118
|
-
|
|
119
|
-
|
|
121
|
+
/* laptops */
|
|
122
|
+
}
|
|
120
123
|
|
|
121
124
|
@media (min-width: 1280px) {
|
|
122
|
-
|
|
123
|
-
|
|
125
|
+
/* desktops */
|
|
126
|
+
}
|
|
124
127
|
|
|
125
128
|
@media (min-width: 1536px) {
|
|
126
|
-
|
|
127
|
-
|
|
129
|
+
/* large monitors */
|
|
130
|
+
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
1
|
/* ----------------------------------- *\
|
|
4
2
|
#index.css
|
|
5
3
|
\* ----------------------------------- */
|
|
@@ -12,25 +10,25 @@
|
|
|
12
10
|
#CUSTOM PROPERTY
|
|
13
11
|
\* ----------------------------------- */
|
|
14
12
|
|
|
13
|
+
/*
|
|
15
14
|
@font-face {
|
|
16
15
|
font-family: value;
|
|
17
16
|
src: url("/value");
|
|
18
17
|
}
|
|
18
|
+
*/
|
|
19
19
|
|
|
20
20
|
@theme {
|
|
21
|
-
|
|
22
|
-
/**
|
|
21
|
+
/**
|
|
23
22
|
* fonts
|
|
24
23
|
*/
|
|
25
|
-
--font-
|
|
24
|
+
--font-sans: sans-serif;
|
|
26
25
|
|
|
27
|
-
/**
|
|
26
|
+
/**
|
|
28
27
|
* colors
|
|
29
28
|
*/
|
|
30
|
-
--color-
|
|
29
|
+
--color-white: white;
|
|
31
30
|
}
|
|
32
31
|
|
|
33
|
-
|
|
34
32
|
/* ----------------------------------- *\
|
|
35
33
|
#LAYER BASE
|
|
36
34
|
\* ----------------------------------- */
|
|
@@ -50,17 +48,16 @@
|
|
|
50
48
|
-webkit-user-drag: none;
|
|
51
49
|
}
|
|
52
50
|
body {
|
|
53
|
-
@apply h-full bg-
|
|
51
|
+
@apply h-full bg-white font-sans overflow-x-hidden;
|
|
54
52
|
}
|
|
55
53
|
|
|
56
|
-
/*
|
|
54
|
+
/*
|
|
57
55
|
::-webkit-scrollbar {
|
|
58
56
|
@apply w-0;
|
|
59
57
|
}
|
|
60
58
|
*/
|
|
61
59
|
}
|
|
62
60
|
|
|
63
|
-
|
|
64
61
|
/* ----------------------------------- *\
|
|
65
62
|
#LAYER UTILITIES
|
|
66
63
|
\* ----------------------------------- */
|
|
@@ -89,7 +86,6 @@
|
|
|
89
86
|
}
|
|
90
87
|
}
|
|
91
88
|
|
|
92
|
-
|
|
93
89
|
/* ----------------------------------- *\
|
|
94
90
|
#LAYER COMPONENTS
|
|
95
91
|
\* ----------------------------------- */
|
|
@@ -97,4 +93,4 @@
|
|
|
97
93
|
/*
|
|
98
94
|
@layer components {
|
|
99
95
|
}
|
|
100
|
-
*/
|
|
96
|
+
*/
|