Skip to content

Commit 7292e63

Browse files
committed
Run biome format --write
1 parent 57642cc commit 7292e63

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

frontend/src/components/Dialog/Dialog.module.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@
9696
--handle-inset-block-start: var(--cpd-space-4x);
9797
--handle-inset-block-end: 0px;
9898
--content-inset-block-start: calc(
99-
var(--handle-inset-block-start) + var(--handle-block-size) +
100-
var(--handle-inset-block-end)
99+
var(--handle-inset-block-start) +
100+
var(--handle-block-size) +
101+
var(--handle-inset-block-end)
101102
);
102103
}
103104

@@ -112,7 +113,8 @@
112113
.drawer .body {
113114
padding-inline: var(--cpd-space-4x);
114115
padding-block-start: calc(
115-
var(--content-inset-block-start) + var(--cpd-space-6x)
116+
var(--content-inset-block-start) +
117+
var(--cpd-space-6x)
116118
);
117119
padding-block-end: var(--cpd-space-12x);
118120
border-start-start-radius: var(--border-radius);

frontend/src/components/SessionCard/SessionCard.module.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
* - the regular 6x padding
3737
*/
3838
padding-block-end: calc(
39-
var(--cpd-space-9x) + var(--cpd-space-6x) + var(--cpd-space-6x)
39+
var(--cpd-space-9x) +
40+
var(--cpd-space-6x) +
41+
var(--cpd-space-6x)
4042
);
4143
}
4244
}

frontend/src/styles/cpd-checkbox-control.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.cpd-checkbox-input,
1717
.cpd-checkbox-ui {
1818
box-sizing: border-box;
19-
grid-area: 1/1;
19+
grid-area: 1 / 1;
2020
inline-size: var(--size);
2121
block-size: var(--size);
2222
}

frontend/src/styles/cpd-form.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
.cpd-form-inline-field-control {
4141
/* The control should have the same height as the label */
4242
block-size: calc(
43-
var(--cpd-font-size-body-md) * var(--cpd-font-line-height-regular)
43+
var(--cpd-font-size-body-md) *
44+
var(--cpd-font-line-height-regular)
4445
);
4546

4647
/* Align the control in the middle of the label */

frontend/src/styles/cpd-text-control.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
.cpd-text-control:focus,
3030
/* This is set to auto by tailwind, we need to reset this */
31-
.cpd-text-control:focus-visible {
31+
.cpd-text-control:focus-visible {
3232
outline: 2px solid var(--cpd-color-border-focused);
3333
border-color: transparent;
3434
}

0 commit comments

Comments
 (0)