Skip to content

Commit d924a8b

Browse files
committed
style: fix lint issues
1 parent ac5065b commit d924a8b

File tree

14 files changed

+9
-22
lines changed

14 files changed

+9
-22
lines changed

src/course-unit/add-component/AddComponent.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
.add-component-button {
77
box-shadow: var(--pgn-elevation-box-shadow-down-1);
8-
98
width: 11.63rem;
109
height: 6.875rem;
1110
}

src/course-updates/CourseUpdates.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
.updates-container {
66
box-shadow: var(--pgn-elevation-box-shadow-centered-1);
7-
87
display: grid;
98
grid-template-columns: 65% 35%;
109
border: .0625rem solid var(--pgn-color-gray-200);

src/course-updates/update-form/UpdateForm.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.update-form {
22
box-shadow: var(--pgn-elevation-box-shadow-centered-1);
3-
43
border: .0625rem solid var(--pgn-color-gray-200);
54
border-radius: .375rem;
65
background: var(--pgn-color-white);

src/files-and-videos/index.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
overflow-x: hidden;
4646
max-height: 500px;
4747
width: 321px;
48-
4948
box-shadow: var(--pgn-elevation-box-shadow-down-2);
5049

5150
.pgn__menu-item {

src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
overflow-x: hidden;
55
max-height: 275px;
66
width: 300px;
7-
87
box-shadow: var(--pgn-elevation-box-shadow-down-2);
98

109
.pgn__menu-item {

src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
padding: 8px 0;
33
margin: 0;
44
width: 250px;
5-
65
box-shadow: var(--pgn-elevation-box-shadow-down-2);
76

87
.pgn__menu-item {

src/generic/course-upload-image/CourseUploadImage.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.image-preview {
22
box-shadow: var(--pgn-elevation-box-shadow-down-1);
3-
43
display: block;
54
width: 23.4375rem;
65
height: 12.5rem;

src/group-configurations/GroupConfigurations.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
.configuration-card {
1616
box-shadow: var(--pgn-elevation-box-shadow-down-1);
17-
1817
background: var(--pgn-color-white);
1918
border-radius: .375rem;
2019
padding: var(--pgn-spacing-spacer-4);

src/group-configurations/empty-placeholder/EmptyPlaceholder.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.group-configurations-empty-placeholder {
22
box-shadow: var(--pgn-elevation-box-shadow-down-1);
3-
43
display: flex;
54
align-items: center;
65
justify-content: center;

src/optimizer-page/scan-results/ScanResults.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ const ScanResults: FC<Props> = ({ data }) => {
4444
<header className="sub-header-content">
4545
<h2 className="sub-header-content-title">{intl.formatMessage(messages.scanHeader)}</h2>
4646
<span className="locked-links-checkbox-wrapper">
47-
<Form.CheckBox
48-
className="locked-links-checkbox"
49-
checked={showLockedLinks}
50-
onClick={() => {
51-
setShowLockedLinks(!showLockedLinks);
52-
}}
53-
>
54-
{intl.formatMessage(messages.lockedCheckboxLabel)}
55-
</Form.CheckBox>
47+
<Form.CheckBox
48+
className="locked-links-checkbox"
49+
checked={showLockedLinks}
50+
onClick={() => {
51+
setShowLockedLinks(!showLockedLinks);
52+
}}
53+
>
54+
{intl.formatMessage(messages.lockedCheckboxLabel)}
55+
</Form.CheckBox>
5656
<LockedInfoIcon />
5757
</span>
5858
</header>

0 commit comments

Comments
 (0)