CSR-365 set base font color, remove horizontal scrollbar.

This commit is contained in:
bmauger 2022-03-09 10:18:46 -05:00
parent cb579d3e7d
commit d58e3f3fb9
3 changed files with 8 additions and 4 deletions

View file

@ -135,7 +135,7 @@ export default {
const newSelectedValues = this.selectedValues; const newSelectedValues = this.selectedValues;
if(Array.isArray(this.selectedValues)) { if(Array.isArray(this.selectedValues)) {
val.checkValue ? newSelectedValues.push(val.value) : newSelectedValues.splice(newSelectedValues.indexOf(val.value), 1); val.checkValue ? newSelectedValues.push(val.value) : newSelectedValues.splice(newSelectedValues.indexOf(val.value), 1);
this.selectedValues = newSelectedValues; this.selectedValues = newSelectedValues;
} }
} else { } else {
this.selectedValues = [val.value]; this.selectedValues = [val.value];
@ -154,11 +154,11 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.button-question-overflow { .button-question-overflow {
height: calc(100vh - 280px); height: calc(100vh - 252px);
.overflow-scroll { .overflow-scroll {
// Height will be determined by overall height of content above list // Height will be determined by overall height of content above list
height: calc(100% - 320px); height: calc(100% - 300px);
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
} }

View file

@ -3,6 +3,7 @@
body { body {
font-size: 16px; font-size: 16px;
background-color: #fff; background-color: #fff;
color: #4D5151;
.container-fluid { .container-fluid {
max-width: 576px; //Remove once desktop app is complete max-width: 576px; //Remove once desktop app is complete
&.container-shadow { &.container-shadow {
@ -22,7 +23,7 @@ body {
} }
.container, .container,
.container-fluid { .container-fluid {
overflow-x: hidden; overflow-x: hidden !important;
} }
.sr-only { .sr-only {

View file

@ -107,6 +107,9 @@ $theme-colors: (
"dark": $dark "dark": $dark
); );
//Default font color
$body-color: $gray-600;
//Fonts //Fonts
$font-family-sans-serif: Roboto, Arial, Helvetica, sans-serif; $font-family-sans-serif: Roboto, Arial, Helvetica, sans-serif;
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;