@pmidc/upyog-css 1.2.3 → 1.2.5
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/index.css +11 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/buttons.scss +17 -11
- package/src/components/textfields.scss +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
border: none !important;
|
|
4
4
|
border-radius: 0.375rem;
|
|
5
5
|
padding: 0.5rem 1rem;
|
|
6
|
-
font-family:
|
|
6
|
+
font-family: "Noto Sans", sans-serif;
|
|
7
7
|
font-weight: 500;
|
|
8
8
|
font-size: 0.875rem;
|
|
9
9
|
line-height: 1.25rem;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
.selector-button-primary {
|
|
40
40
|
@extend .selector-button;
|
|
41
|
-
background-color: #
|
|
41
|
+
background-color: #2947a3 !important;
|
|
42
42
|
|
|
43
43
|
&:hover {
|
|
44
44
|
background-color: #1e3a8a !important;
|
|
@@ -48,30 +48,29 @@
|
|
|
48
48
|
.selector-button-secondary {
|
|
49
49
|
@extend .selector-button;
|
|
50
50
|
background-color: #ffffff !important;
|
|
51
|
-
color: #
|
|
51
|
+
color: #2947a3 !important;
|
|
52
52
|
|
|
53
53
|
h2 {
|
|
54
|
-
color: #
|
|
54
|
+
color: #2947a3 !important;
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
|
|
59
58
|
.selector-button-border {
|
|
60
|
-
background-color: #
|
|
59
|
+
background-color: #2947a3 !important;
|
|
61
60
|
color: #ffffff !important;
|
|
62
61
|
border: none !important;
|
|
63
62
|
border-radius: 0.375rem;
|
|
64
63
|
padding: 0.5rem 1rem;
|
|
65
|
-
font-family:
|
|
64
|
+
font-family: "Noto Sans", sans-serif;
|
|
66
65
|
font-weight: 500;
|
|
67
66
|
font-size: 0.875rem;
|
|
68
67
|
line-height: 1.25rem;
|
|
69
68
|
cursor: pointer;
|
|
70
69
|
transition: all 0.2s ease;
|
|
71
|
-
white-space: normal;
|
|
72
|
-
word-break: break-word;
|
|
70
|
+
white-space: normal; /* allow wrapping */
|
|
71
|
+
word-break: break-word; /* break long words */
|
|
73
72
|
overflow-wrap: break-word;
|
|
74
|
-
text-align: center;
|
|
73
|
+
text-align: center;
|
|
75
74
|
display: inline-flex;
|
|
76
75
|
align-items: center;
|
|
77
76
|
justify-content: center;
|
|
@@ -98,7 +97,6 @@
|
|
|
98
97
|
}
|
|
99
98
|
}
|
|
100
99
|
|
|
101
|
-
|
|
102
100
|
.input-mirror-selector-button {
|
|
103
101
|
@apply h-16 bg-border text-center border-b-2 border-input-border border-solid outline-none px-lg !important;
|
|
104
102
|
|
|
@@ -132,3 +130,11 @@
|
|
|
132
130
|
border: 1px solid !important;
|
|
133
131
|
margin-right: 10px !important;
|
|
134
132
|
}
|
|
133
|
+
.action-button-myapplication {
|
|
134
|
+
display: flex;
|
|
135
|
+
gap: 20px;
|
|
136
|
+
flex-wrap: wrap;
|
|
137
|
+
margin-top: 10px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
|