Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
justify-content: center;

flex: 0 0 auto;

@include ltemd {
width: 56px;
height: 56px;
Expand Down Expand Up @@ -78,7 +79,7 @@

flex: 0 0 auto;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
The change from > span to >span removes a space that might be required for consistency with the rest of the file's formatting style. Ensure this change aligns with the project's style guide.

> span {
>span {
display: flex;
align-items: center;
gap: $sp-2;
Expand All @@ -101,15 +102,17 @@
&.sm {
height: 16px;
}

&.md {
height: 20px;
stroke: #0a0a0a;
}

&.iconFile {
path {
fill: #0A0A0A;
}

height: 16px;
}
}
Expand All @@ -125,10 +128,25 @@
font-size: 14px;
line-height: 20px;
color: #0A0A0A;

>div {

>p,
>ul,
>blockquote,
>h5 {
margin-top: $sp-3;
}

>h5 {
font-weight: bold;
}
}
}

.workflowFileLink {
margin-top: $sp-4;

a {
display: flex;
align-items: center;
Expand All @@ -141,10 +159,11 @@
svg {
width: 12px;
height: 12px;

path {
fill: $link-blue-dark;
}
}
}

}
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
The file does not end with a newline character. This can cause issues with some tools and version control systems. It's a good practice to ensure files end with a newline.

Loading