Skip to content

Commit

Permalink
fixing margin on list items in student project page
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Sep 20, 2024
1 parent f0a1ad5 commit 69a8191
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
8 changes: 4 additions & 4 deletions packages/vue/src/components/BlockText/BlockText.stories.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const BaseStory = {
content: [
BlockImageData,
...BlockStreamfieldMinimalData.body,
BlockRichTableData,
BlockInlineImageData.block,
{
blockType: 'RichTextBlock',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,15 @@ const { heading, blocks, image, steps, stepsNumbering, text } = reactive(props)
}
}
.PageEduStudentProjectStep__fullWidth {
.LayoutHelper > div > .BlockText:not(.BlockRichTable.BlockText) p {
@screen lg {
@apply mr-[10rem];
}
@screen xl {
@apply mr-[14rem];
.LayoutHelper > div > .BlockText {
p,
li {
@screen lg {
@apply mr-[10rem];
}
@screen xl {
@apply mr-[14rem];
}
}
}
}
Expand Down

0 comments on commit 69a8191

Please sign in to comment.