auto-component 0.0.35 → 0.0.36
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 +1 -1
- package/src/auto-component.css +9 -9
package/package.json
CHANGED
package/src/auto-component.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
#auto-component {
|
|
2
2
|
position: relative;
|
|
3
3
|
width: 100%;
|
|
4
4
|
display: flex;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
margin: 40px 0;
|
|
8
8
|
font-family: Arial, Helvetica, sans-serif
|
|
9
9
|
}
|
|
10
|
-
#
|
|
10
|
+
#auto-component div {
|
|
11
11
|
width: 100%;
|
|
12
12
|
display: flex;
|
|
13
13
|
flex-direction: row;
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
align-items: center;
|
|
16
16
|
|
|
17
17
|
}
|
|
18
|
-
#
|
|
18
|
+
#auto-component input {
|
|
19
19
|
width: 60%;
|
|
20
20
|
height: 40px;
|
|
21
21
|
border-radius: 5px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
border: 3px solid #ddd;
|
|
25
25
|
padding-left: 10px;
|
|
26
26
|
}
|
|
27
|
-
#
|
|
27
|
+
#auto-component button {
|
|
28
28
|
padding: 10px;
|
|
29
29
|
margin: 20px;
|
|
30
30
|
background: rgb(184, 230, 184);
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
border-radius: 5px;
|
|
33
33
|
box-shadow: 0px 0px 5px #fff;
|
|
34
34
|
}
|
|
35
|
-
#
|
|
35
|
+
#auto-component button:nth-child(3) {
|
|
36
36
|
padding: 10px 20px;
|
|
37
37
|
margin-left: 0px;
|
|
38
38
|
margin-right: 0px;
|
|
39
39
|
background: #db9d9d;
|
|
40
40
|
}
|
|
41
|
-
#
|
|
41
|
+
#auto-component button:hover {
|
|
42
42
|
background: green;
|
|
43
43
|
color: #eee;
|
|
44
44
|
}
|
|
45
|
-
#
|
|
45
|
+
#auto-component button:nth-child(3):hover {
|
|
46
46
|
background: #dc3c3c;
|
|
47
47
|
}
|
|
48
|
-
#
|
|
48
|
+
#auto-component div:nth-child(2) {
|
|
49
49
|
display: flex;
|
|
50
50
|
flex-direction: column;
|
|
51
51
|
}
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
font-size: 1.2rem;
|
|
68
68
|
pointer-events: none;
|
|
69
69
|
}
|
|
70
|
-
#
|
|
70
|
+
#auto-component pre {
|
|
71
71
|
position: relative;
|
|
72
72
|
text-align: left;
|
|
73
73
|
max-width: 90%;
|