diff --git a/frontend/components/forms/fields/Checkbox/_styles.scss b/frontend/components/forms/fields/Checkbox/_styles.scss index 2622200889..a248e6a4b9 100644 --- a/frontend/components/forms/fields/Checkbox/_styles.scss +++ b/frontend/components/forms/fields/Checkbox/_styles.scss @@ -97,6 +97,8 @@ } .inverse { + flex-direction: row-reverse; // Switches the text to the left side of checkbox as all checkboxes are now display flex + .fleet-checkbox { &__input { float: right; diff --git a/frontend/pages/policies/PolicyPage/_styles.scss b/frontend/pages/policies/PolicyPage/_styles.scss index f069352178..d591169d57 100644 --- a/frontend/pages/policies/PolicyPage/_styles.scss +++ b/frontend/pages/policies/PolicyPage/_styles.scss @@ -149,5 +149,9 @@ .form-field--checkbox { margin-bottom: 0; } + + // .inverse { + // flex-direction: row-reverse; // Switches the text to the left side of checkbox as all checkboxes are now display flex + // } } } diff --git a/frontend/pages/policies/PolicyPage/components/PolicyForm/_styles.scss b/frontend/pages/policies/PolicyPage/components/PolicyForm/_styles.scss index 21c84d184c..82b62716a0 100644 --- a/frontend/pages/policies/PolicyPage/components/PolicyForm/_styles.scss +++ b/frontend/pages/policies/PolicyPage/components/PolicyForm/_styles.scss @@ -136,6 +136,7 @@ resize: none; white-space: normal; background-color: transparent; + overflow: hidden; &:hover:not(.focus-visible):not(.no-hover) { color: $core-vibrant-blue; cursor: pointer; diff --git a/frontend/pages/queries/edit/components/EditQueryForm/_styles.scss b/frontend/pages/queries/edit/components/EditQueryForm/_styles.scss index 4be0f8b852..93635aebcc 100644 --- a/frontend/pages/queries/edit/components/EditQueryForm/_styles.scss +++ b/frontend/pages/queries/edit/components/EditQueryForm/_styles.scss @@ -138,6 +138,7 @@ resize: none; white-space: normal; background-color: transparent; + overflow: hidden; &:hover:not(.focus-visible):not(.no-hover) { color: $core-vibrant-blue; cursor: pointer;