From 53019ccfa1c263b9ae92975f212cecc002cfb19f Mon Sep 17 00:00:00 2001 From: bmauger Date: Fri, 3 Dec 2021 07:45:31 -0500 Subject: [PATCH] Remove horizontal scrollbar from .container and .container-fluid. --- src/styles/common-styles.scss | 43 +++++++++++-------- .../radio-horizontal/radio-horizontal.vue | 1 - 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index ab36e35c5..f01ffbefa 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -1,24 +1,29 @@ // Common/Global Styles // Use this file for global styles that don't or won't have their own stylesheet body { - font-size: 16px; - background-color: #fff; - padding: .5rem; - .container-fluid { - max-width: 576px;//Remove once desktop app is complete - &.container-shadow { - box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);//Use instead of Bootstrap's helper - } - } - a { - color: $blue; - text-decoration: none; - border-bottom: 1px solid $blue; - &:hover { - color: $blue-400; - } - } - .pointer { - cursor: pointer; + font-size: 16px; + background-color: #fff; + padding: .5rem; + .container-fluid { + max-width: 576px;//Remove once desktop app is complete + &.container-shadow { + box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);//Use instead of Bootstrap's helper } } + a { + color: $blue; + text-decoration: none; + border-bottom: 1px solid $blue; + &:hover { + color: $blue-400; + } + } + .pointer { + cursor: pointer; + } + .container, + .container-fluid { + overflow-x: hidden; + } +} +// Hide horizontal scrollbar diff --git a/src/ux-components/radio-horizontal/radio-horizontal.vue b/src/ux-components/radio-horizontal/radio-horizontal.vue index d8c32ec9f..73d8a72d0 100644 --- a/src/ux-components/radio-horizontal/radio-horizontal.vue +++ b/src/ux-components/radio-horizontal/radio-horizontal.vue @@ -48,7 +48,6 @@ export default { } else if(this.positionInGroup == 1) { className = 'first-item' } - console.log(typeof this.positionInGroup); return className; } }