fix padding on masked-input and web cli

This commit is contained in:
Matthew Irish
2018-10-09 23:45:53 -05:00
parent 5d3c576b80
commit ffee108908
2 changed files with 9 additions and 6 deletions

View File

@@ -30,6 +30,7 @@
color: inherit;
font-size: $body-size;
min-height: 2rem;
padding: 0;
&:not(.console-ui-command):not(.CodeMirror-line) {
padding-left: $console-spacing;
@@ -152,14 +153,14 @@ header .navbar-sections {
.console-spinner.control {
height: 21px;
width: 21px;
transform: scale(.75);
transform: scale(0.75);
transform-origin: center;
&::after {
height: auto;
width: auto;
right: .25rem;
left: .25rem;
top: .25rem;
bottom: .25rem;
right: 0.25rem;
left: 0.25rem;
top: 0.25rem;
bottom: 0.25rem;
}
}

View File

@@ -3,7 +3,7 @@
}
.masked-input .masked-value {
padding-left: 2.50rem;
padding-left: 2.5rem;
}
// we want to style the boxes the same everywhere so they
@@ -25,6 +25,8 @@
.masked-input .display-only {
line-height: 1.5;
font-size: 1rem;
padding-top: 0;
padding-bottom: 0;
}
.masked-input-toggle {