Fix leading 0
parent
d233ea2ef2
commit
57b34e0fa7
|
@ -9,11 +9,11 @@
|
||||||
label {
|
label {
|
||||||
@include font-size(small);
|
@include font-size(small);
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 0.25rem;
|
margin-bottom: .25rem;
|
||||||
|
|
||||||
.mumble {
|
.mumble {
|
||||||
@include font-type(light);
|
@include font-type(light);
|
||||||
margin-left: 0.25rem;
|
margin-left: .25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
@include svg-size(1.5rem);
|
@include svg-size(1.5rem);
|
||||||
margin-right: 0.5rem;
|
margin-right: .5rem;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin-left: 0.5rem;
|
margin-left: .5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@
|
||||||
li {
|
li {
|
||||||
&:hover {
|
&:hover {
|
||||||
background: rgba($primary, .1);
|
background: rgba($primary, .1);
|
||||||
transition: background 0.3s ease-in;
|
transition: background .3s ease-in;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
|
@ -154,7 +154,7 @@
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
max-height: 120px;
|
max-height: 120px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: all 0.3s 0.2s cubic-bezier(0, 0, .53, 1.32);
|
transition: all .3s .2s cubic-bezier(0, 0, .53, 1.32);
|
||||||
|
|
||||||
&.ng-hide {
|
&.ng-hide {
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
|
@ -170,7 +170,7 @@
|
||||||
&:hover {
|
&:hover {
|
||||||
svg {
|
svg {
|
||||||
fill: $primary;
|
fill: $primary;
|
||||||
transition: fill 0.2s linear;
|
transition: fill .2s linear;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -191,7 +191,7 @@
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@include font-size(large);
|
@include font-size(large);
|
||||||
padding: 0.75rem;
|
padding: .75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-submit {
|
&-submit {
|
||||||
|
|
Loading…
Reference in New Issue