@rypen-dev/shared-components 2.1.72 → 2.1.76
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
|
@@ -133,6 +133,11 @@ select {
|
|
|
133
133
|
background-repeat: no-repeat;
|
|
134
134
|
background-size: 30px 30px;
|
|
135
135
|
}
|
|
136
|
+
|
|
137
|
+
&:empty {
|
|
138
|
+
height: 30px;
|
|
139
|
+
padding-left: 30px;
|
|
140
|
+
}
|
|
136
141
|
}
|
|
137
142
|
|
|
138
143
|
input:checked + label {
|
|
@@ -195,6 +200,11 @@ select {
|
|
|
195
200
|
width: 20px;
|
|
196
201
|
height: 20px;
|
|
197
202
|
}
|
|
203
|
+
|
|
204
|
+
&:empty {
|
|
205
|
+
height: 20px;
|
|
206
|
+
padding-left: 20px;
|
|
207
|
+
}
|
|
198
208
|
}
|
|
199
209
|
|
|
200
210
|
input:checked + label {
|
|
@@ -739,6 +749,16 @@ label {
|
|
|
739
749
|
border-style: solid !important;
|
|
740
750
|
}
|
|
741
751
|
|
|
752
|
+
&.line {
|
|
753
|
+
input,
|
|
754
|
+
textarea,
|
|
755
|
+
select {
|
|
756
|
+
border-top-width: 0 !important;
|
|
757
|
+
border-left-width: 0 !important;
|
|
758
|
+
border-right-width: 0 !important;
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
|
|
742
762
|
&:not(.tiny) {
|
|
743
763
|
input,
|
|
744
764
|
textarea,
|
|
@@ -555,4 +555,20 @@ small,
|
|
|
555
555
|
letter-spacing: 1px;
|
|
556
556
|
padding: 60px 0;
|
|
557
557
|
text-align: center;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.store-code {
|
|
561
|
+
font-family: monospace;
|
|
562
|
+
font-size: 1.75rem;
|
|
563
|
+
font-weight: 500;
|
|
564
|
+
text-transform: uppercase;
|
|
565
|
+
|
|
566
|
+
&.pill {
|
|
567
|
+
border: 0;
|
|
568
|
+
background-color: $medium-gray;
|
|
569
|
+
letter-spacing: 3px;
|
|
570
|
+
margin-left: 0;
|
|
571
|
+
margin-right: 0;
|
|
572
|
+
margin-top: 14px;
|
|
573
|
+
}
|
|
558
574
|
}
|