Skip to content

Commit 4d9246b

Browse files
committed
chore: format all files in src
1 parent 420a684 commit 4d9246b

File tree

20 files changed

+57
-59
lines changed

20 files changed

+57
-59
lines changed

src/Common/CodeEditor/codeEditor.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
overflow: hidden;
2626
}
2727

28-
.radio-group input[type=checkbox]:checked+.radio__item-label {
28+
.radio-group input[type='checkbox']:checked + .radio__item-label {
2929
background: var(--N700);
3030
border-radius: 0;
3131
color: var(--white);

src/Common/Markdown/markdown.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,11 @@
6969
line-height: inherit;
7070
word-wrap: normal;
7171
white-space: pre;
72-
border: 0
72+
border: 0;
7373
}
7474
}
7575

76-
7776
a.anchor {
7877
color: var(--N900);
7978
}
80-
}
79+
}

src/Common/Pagination/pagination.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
width: 64px;
5656
position: absolute;
5757
bottom: 31px;
58-
background-color: var(--white);;
58+
background-color: var(--white);
5959
}
6060

6161
.select__button {

src/Common/RJSF/rjsfForm.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
margin-right: 28px;
2121
}
2222

23-
&__field, &__field--error {
23+
&__field,
24+
&__field--error {
2425
grid-template-columns: 250px 1fr;
2526

2627
input.form__input {

src/Common/RadioGroup/radioGroup.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@
3434
display: flex;
3535
align-items: center;
3636
}
37-
.radio+.radio {
37+
.radio + .radio {
3838
margin-top: 0;
3939
}
40-
input[type=checkbox] {
40+
input[type='checkbox'] {
4141
display: contents;
4242
overflow: hidden;
4343
max-width: 0px;
4444
height: 0;
4545
opacity: 0;
4646
margin: unset;
4747
}
48-
input+.radio__item-label {
48+
input + .radio__item-label {
4949
padding: 4px 6px;
5050
height: 100%;
5151
width: 100%;
@@ -54,9 +54,9 @@
5454
transition: all 0.5s;
5555
cursor: pointer;
5656
}
57-
input[type=checkbox]:checked+.radio__item-label {
57+
input[type='checkbox']:checked + .radio__item-label {
5858
background: #2c3354;
5959
color: white;
6060
border-radius: 4px;
6161
}
62-
}
62+
}

src/Common/SearchBar/searchBar.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@
1515
*/
1616

1717
.search-bar {
18-
1918
&:focus,
2019
&:focus-within {
2120
outline: none;
2221
border: solid 1px var(--B500) !important;
2322
}
2423

2524
&__input {
26-
2725
&:focus,
2826
&:focus-visible {
2927
border: none;

src/Common/Security/scanVulnerabilities.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@
8282

8383
.scanned-object__results {
8484
margin: 0 20px;
85-
}
85+
}
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
In case someone wants to add a new build infrastructure field, the following steps should be followed:
2-
- Update the BUILD_INFRA_FORM_FIELDS, in constants.tsx
3-
- Add BuildInfraConfigTypes, BuildInfraLocators, BuildInfraInheritActions(If any) in types.tsx
4-
- In utils.tsx, update the handleProfileInputChange and validation functions accordingly
2+
3+
- Update the BUILD_INFRA_FORM_FIELDS, in constants.tsx
4+
- Add BuildInfraConfigTypes, BuildInfraLocators, BuildInfraInheritActions(If any) in types.tsx
5+
- In utils.tsx, update the handleProfileInputChange and validation functions accordingly

src/Shared/Components/ButtonWithSelector/buttonWithSelector.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515
*/
1616

1717
.button-with-selector {
18-
border-left: 1px solid rgba(255, 255, 255, 0.20);
18+
border-left: 1px solid rgba(255, 255, 255, 0.2);
1919

20-
&:hover, &:active, &:focus {
20+
&:hover,
21+
&:active,
22+
&:focus {
2123
border: none;
22-
border-left: 1px solid rgba(255, 255, 255, 0.20);
24+
border-left: 1px solid rgba(255, 255, 255, 0.2);
2325
background-color: var(--B600);
2426
}
2527
}

src/Shared/Components/CICDHistory/LogsRenderer.scss

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,47 @@
55
background: transparent;
66
border-radius: 0px;
77
border: none !important;
8-
8+
99
input {
1010
color: var(--N0);
11-
11+
1212
&::placeholder {
1313
color: var(--N500);
1414
}
1515
}
16-
16+
1717
&:hover {
1818
border: none !important;
1919
background: transparent;
2020
}
2121
}
22-
22+
2323
.search-bar:focus-within {
2424
border: none !important;
2525
}
2626
}
27-
27+
2828
&__stage-accordion {
29-
background-color: #0C1021;
30-
29+
background-color: #0c1021;
30+
3131
&:not(&--open-stage):hover {
3232
background-color: rgba(44, 51, 84, 0.5);
3333
}
34-
34+
3535
&--open-stage {
36-
background-color: #2C3354;
36+
background-color: #2c3354;
3737
}
38-
3938
}
40-
39+
4140
&__log-item {
4241
grid-template-columns: 34px auto;
4342
&:hover {
4443
background-color: rgba(255, 255, 255, 0.1);
4544
}
4645
}
47-
46+
4847
&__filters-border-bottom {
49-
border-bottom: 1px solid #2C3354;
48+
border-bottom: 1px solid #2c3354;
5049
}
5150
}
52-
}
51+
}

0 commit comments

Comments
 (0)