Removed !important flags from shop list components

This commit is contained in:
Leah Schumann 2023-06-02 06:30:09 -04:00
parent a59d69e75d
commit 8e93eda0ce
2 changed files with 9 additions and 8 deletions

View file

@ -73,10 +73,11 @@ export default {
}, },
computed: { computed: {
displayAvailabilityIndicators() { displayAvailabilityIndicators() {
return experimentMixin.methods.hasSettingEqualTo( return true;
experimentSettings.DISPLAY_AVAILABILITY_INDICATORS, // return experimentMixin.methods.hasSettingEqualTo(
"true" // experimentSettings.DISPLAY_AVAILABILITY_INDICATORS,
); // "true"
// );
}, },
isLoaderDisplayed() { isLoaderDisplayed() {
return this.availabilityRating == null; return this.availabilityRating == null;
@ -192,7 +193,7 @@ export default {
.button-auxillary-copy { .button-auxillary-copy {
box-sizing: border-box; box-sizing: border-box;
justify-content: right; justify-content: right;
line-height: 1.25rem !important; line-height: 1.25rem;
font-weight: 500; font-weight: 500;
font-size: 0.75rem; font-size: 0.75rem;
align-items: center; align-items: center;
@ -205,7 +206,7 @@ export default {
} }
.loader:after { .loader:after {
background-color: $gray-300 !important; background-color: $gray-300;
height: 1rem; height: 1rem;
width: 1rem; width: 1rem;
} }
@ -221,7 +222,7 @@ export default {
} }
&.gray { &.gray {
color: $gray-600 !important; color: $gray-600;
background-color: $gray-100; background-color: $gray-100;
padding-left: 0.125rem; padding-left: 0.125rem;
padding-right: 0.125rem; padding-right: 0.125rem;

View file

@ -280,7 +280,7 @@ export default {
border-radius: 0.5rem; border-radius: 0.5rem;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
padding: 0.5rem 0.5rem 0.5rem 1.5rem !important; padding: 0.5rem 0.5rem 0.5rem 1.5rem;
gap: 0.25rem; gap: 0.25rem;
.alert-heading { .alert-heading {