Select Targets disabled adding padding to right side (#925)

This commit is contained in:
Kyle Knight
2017-01-12 11:32:41 -05:00
committed by Jason Meller
parent a8824678a3
commit 427235b837
4 changed files with 18 additions and 1 deletions
@@ -152,8 +152,10 @@
float: right;
visibility: hidden;
position: relative;
padding: 0 $pad-medium;
line-height: 34px;
width: 25px;
padding: 0;
margin: 0 5px;
&::after {
@extend %kolidecon;
@@ -211,6 +213,12 @@
}
}
&.is-disabled {
.Select-value-label {
padding: 0 $pad-medium;
}
}
@include breakpoint(ltdesktop) {
.Select-menu-outer {
.Select-menu {
@@ -1,5 +1,7 @@
.scheduled-queries-list-wrapper {
@include flex-grow(1);
padding: $pad-small $pad-base;
margin-bottom: $base;
&__query-count {
margin: 0 0 15px;
@@ -1,4 +1,10 @@
.edit-pack-page {
@at-root .has-sidebar > &__content {
@include display(flex);
@include flex-direction(column);
@include align-self(stretch);
}
&__pack-form {
padding: $pad-small $pad-base;
}
@@ -56,6 +56,7 @@
&__wrapper {
padding: $base;
min-height: 90vh;
}
}