Skip to content

Commit

Permalink
stylelint: fixed "number-leading-zero" errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurStam committed Jul 3, 2018
1 parent b06ac13 commit f96a8af
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/components/ActionSheet/ActionSheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@
.ActionSheet--android {
min-width: 280px;
background: #fff;
box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.3), 0 0 35px 0 rgba(0, 0, 0, 0.22);
box-shadow: 0 20px 35px 0 rgba(0, 0, 0, .3), 0 0 35px 0 rgba(0, 0, 0, .22);
border-radius: 2px;
animation: animation-android-actionsheet-intro .2s ease;
}

.ActionSheet--android.ActionSheet--closing {
transform: scale(0.95);
transform: scale(.95);
opacity: 0;
transition: transform .2s var(--android-easing), opacity .2s var(--android-easing);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Alert/Alert.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
min-width: 280px;
margin: auto 24px;
background: #fff;
box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.3), 0 0 35px 0 rgba(0, 0, 0, 0.22);
box-shadow: 0 20px 35px 0 rgba(0, 0, 0, .3), 0 0 35px 0 rgba(0, 0, 0, .22);
border-radius: 2px;
animation: animation-android-alert-intro .2s ease;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Button/Button.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
}

.Button--level-sell.Tappable--active:not([disabled]) {
background-color: rgba(82, 139, 204, 0.1);
background-color: rgba(82, 139, 204, .1);
}

.Button--size-m {
Expand Down
6 changes: 3 additions & 3 deletions src/components/FixedTabs/FixedTabs.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
}

.FixedTabs--ios.FixedTabs--white.FixedLayout--top {
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.FixedTabs--ios.FixedTabs--white.FixedLayout--bottom {
border-top: 1px solid rgba(0, 0, 0, 0.12);
border-top: 1px solid rgba(0, 0, 0, .12);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
.FixedTabs--ios.FixedTabs--gray, .FixedTabs--ios.FixedTabs--white {
border-width: 0.5px;
border-width: .5px;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/Group/Group.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
.Group--android {
margin: 8px 0;
background-color: #fff;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06), 0 0 2px 0 rgba(0, 0, 0, 0.03);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .06), 0 0 2px 0 rgba(0, 0, 0, .03);
}

.Group--android:first-child {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Input/Input.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
.Input--ios .Input__el {
border-radius: 10px;
background-color: rgb(242, 243, 245);
border: solid .5px rgba(0, 0, 0, 0.15);
border: solid .5px rgba(0, 0, 0, .15);
}

.Input--ios .Input__el:focus {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Select/Select.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
.Select--ios .Select__container {
border-radius: 10px;
background-color: rgb(242, 243, 245);
border: solid .5px rgba(0, 0, 0, 0.15);
border: solid .5px rgba(0, 0, 0, .15);
}

.Select--ios select:focus ~ .Select__container,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Slider/Slider.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@
content: '';
background: #fff;
border-radius: 10px;
box-shadow: 0 1px 3px 0 var(--separator), 0 0 1px 0 var(--separator), 0 0 0 0.5px rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px 0 var(--separator), 0 0 1px 0 var(--separator), 0 0 0 .5px rgba(0, 0, 0, .04);
}
2 changes: 1 addition & 1 deletion src/components/Textarea/Textarea.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
.Textarea--ios textarea {
border-radius: 10px;
background-color: rgb(242, 243, 245);
border: solid .5px rgba(0, 0, 0, 0.15);
border: solid .5px rgba(0, 0, 0, .15);
}

.Textarea--ios textarea::placeholder {
Expand Down

0 comments on commit f96a8af

Please sign in to comment.