took care of the last of the QA feedback

This commit is contained in:
Calvin Jhunjhnuwala
2020-09-28 09:36:55 -07:00
parent 09a811f29a
commit 030467cc2e
13 changed files with 103 additions and 74 deletions

View File

@@ -222,11 +222,11 @@
margin-right: 0;
border-top: 1px solid $black;
border-bottom: 1px solid $black;
}
}
}
@include media-breakpoint-down(md) {
#calculator-inputs-offset.offset {
height: 248px;
height: 404px;
width: 100%;
}
#calculator-inputs-offset {
@@ -263,6 +263,12 @@
display: block;
}
}
@include media-breakpoint-down(sm) {
#calculator-inputs-offset.offset {
height: 486px;
width: 100%;
}
}
@include media-breakpoint-up(xl){
#data-selector li:first-child a {
border-top-left-radius: 8px;
@@ -311,10 +317,21 @@
#kWh-pap-dot {
}
.dash {
&.active {
font-weight: bold;
color: $primary;
}
}
.dash:before {
content: url(../img/icons/dash-line.png);
// content: url(../img/icons/dash-line.png);
content: '|';
font-size: 7px;
font-weight: bold;
color: $gray-500;
position: absolute;
top: -12px;
top: -10px;
margin-left: 13px;
}