Skip to content

Commit

Permalink
determined the issue was due to the more specific rule taking precede…
Browse files Browse the repository at this point in the history
…nce (though this only occurred on the server)
  • Loading branch information
stephiescastle committed Sep 30, 2024
1 parent 69a745d commit 1dbbc95
Showing 1 changed file with 13 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,18 +188,21 @@ const { heading, blocks, image, steps, stepsNumbering, text } = reactive(props)
// intentionally overriding correction that occurs within ThemeVariantGray
@apply text-jpl-red;
}
.richtext-image {
&.right,
&.left {
@apply lg:max-w-md;
}
&.right {
@apply mr-0;
}
&.left {
@apply ml-0;
.LayoutHelper > div > .BlockText {
.richtext-image {
&.right,
&.left {
@apply lg:max-w-md;
}
&.right {
@apply mr-0;
}
&.left {
@apply ml-0;
}
}
}
.PageEduStudentProjectStep__fullWidth {
.LayoutHelper > div > .BlockText {
p,
Expand Down

0 comments on commit 1dbbc95

Please sign in to comment.