From b68257e176df30a1fa29b6b57db5ee556cf76581 Mon Sep 17 00:00:00 2001 From: Kristin Aoki <42981026+KristinAoki@users.noreply.github.com> Date: Fri, 2 Aug 2024 15:04:49 -0400 Subject: [PATCH] fix: remove imports breaking build (#500) --- .../components/DurationWidget/index.scss | 7 +------ src/editors/containers/VideoUploadEditor/index.scss | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.scss b/src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.scss index d71cf1c6e..ed9a26ebf 100644 --- a/src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.scss +++ b/src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.scss @@ -1,8 +1,3 @@ -// do NOT @import "@openedx/paragon/scss/core/core"; in any files in this repo, or it will add 400 kB of extra CSS -// to the MFE each time you do so. The following are OK because they are only defining variables like $grey-500: -@import "@edx/brand/paragon/variables"; -@import "@openedx/paragon/scss/core/_variables"; - .total-label { - border: 1px solid $gray-500; + border: 1px solid #707070; } diff --git a/src/editors/containers/VideoUploadEditor/index.scss b/src/editors/containers/VideoUploadEditor/index.scss index 6e3186204..2c0565c6c 100644 --- a/src/editors/containers/VideoUploadEditor/index.scss +++ b/src/editors/containers/VideoUploadEditor/index.scss @@ -1,8 +1,3 @@ -// do NOT @import "@openedx/paragon/scss/core/core"; in any files in this repo, or it will add 400 kB of extra CSS -// to the MFE each time you do so. The following are OK because they are only defining variables like $grey-500: -@import "@edx/brand/paragon/variables"; -@import "@openedx/paragon/scss/core/_variables"; - .dropzone-middle { border: 2px dashed #ccc; @@ -34,7 +29,7 @@ &, &:active, &:hover { background-color: transparent !important; border: none !important; - color: $gray-500 !important; + color: #707070 !important; } }