corrected issues with spacing between the site-header and button-question.brought over logo image and alert styling for site-header for future use.

This commit is contained in:
Jason Wheeler 2022-11-17 11:02:58 -05:00
parent 58018eb08c
commit d270a7695f
2 changed files with 8 additions and 2 deletions

View file

@ -98,7 +98,7 @@
computed: { computed: {
getFieldSetClasses() { getFieldSetClasses() {
if (this.isOverflowScrollable) { if (this.isOverflowScrollable) {
return "container-fluid overflow-scroll position-absolute px-5 pt-1 py-0"; return "container-fluid overflow-scroll position-absolute px-5 pb-2";
} }
else if (this.buttonType == "listCard") { else if (this.buttonType == "listCard") {
return "w-100"; return "w-100";

View file

@ -71,5 +71,11 @@ import { globalEvents } from "@/constants/events";
.site-header { .site-header {
padding: 0.97rem 0; padding: 0.97rem 0;
} }
.logo-image {
max-width: 78px;
}
.alert {
left: 0;
top: 72px;
}
</style> </style>