Skip to content

Commit

Permalink
chore: update paragon 23 (#2694)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxFrank13 authored Feb 19, 2025
1 parent cb5dab4 commit 0f12069
Show file tree
Hide file tree
Showing 7 changed files with 1,749 additions and 166 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@include make-col-ready();
@include make-col(8);
margin-bottom: 0;
margin-top: $spacer * .5;
margin-top: calc(var(--pgn-spacing-spacer-base) * .5);
display: inline-block;
vertical-align: middle;
}
Expand Down Expand Up @@ -87,7 +87,7 @@

.signatory {
margin: 0;
margin-bottom: $spacer * .5;
margin-bottom: calc(var(--pgn-spacing-spacer-base) * .5);
width: 100%;
&:last-child {
margin-bottom: 0;
Expand Down Expand Up @@ -165,7 +165,7 @@
.accomplishment-summary,
.accomplishment-statement-detail {
margin: 0;
margin-bottom: $spacer * 1.5;
margin-bottom: calc(var(--pgn-spacing-spacer-base) * 1.5);
}
}

Expand Down
2 changes: 1 addition & 1 deletion credentials/static/sass/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
@extend .p-1;
display: inline-block;
border: 1px solid $gray-100;
border-radius: $card-border-radius;
border-radius: var(--pgn-size-card-border-radius-base);
background-color: $gray-300;
}

Expand Down
1 change: 0 additions & 1 deletion credentials/static/sass/_config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
// ------------------------------
// #VARIABLES
// ------------------------------
$fa-font-path: '~font-awesome/fonts';

// Without this, bootstrap's print mode is too wide
$print-body-min-width: 0;
2 changes: 1 addition & 1 deletion credentials/static/sass/_layouts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// ------------------------------
%layout-wrapper {
@extend .mb-5;
padding: 0 ($spacer*2);
padding: 0 calc(var(--pgn-spacing-spacer-base) * 2);
}

%layout {
Expand Down
3 changes: 1 addition & 2 deletions credentials/static/sass/_lib.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

// About: third party libraries and dependencies import

@import '~font-awesome/scss/font-awesome';
@import "~@openedx/paragon/scss/core/core.scss";
@import "~@openedx/paragon/styles/scss/core/core.scss";
Loading

0 comments on commit 0f12069

Please sign in to comment.