Skip to content

Commit

Permalink
fix: remove imports breaking build
Browse files Browse the repository at this point in the history
  • Loading branch information
KristinAoki committed Aug 2, 2024
1 parent beb4813 commit 295008e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -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;
}
7 changes: 1 addition & 6 deletions src/editors/containers/VideoUploadEditor/index.scss
Original file line number Diff line number Diff line change
@@ -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;

Expand Down Expand Up @@ -34,7 +29,7 @@
&, &:active, &:hover {
background-color: transparent !important;
border: none !important;
color: $gray-500 !important;
color: #707070 !important;
}
}

Expand Down

0 comments on commit 295008e

Please sign in to comment.