Skip to content

Commit bc2c915

Browse files
fix: css formatting
1 parent 06f0f3b commit bc2c915

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

examples/playground/src/index.css

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,48 @@
44

55
@layer {
66
::-webkit-scrollbar {
7-
@apply w-2
7+
@apply w-2;
88
}
99

1010
::-webkit-scrollbar-track {
11-
@apply bg-ng-background-300 rounded-lg
11+
@apply bg-ng-background-300 rounded-lg;
1212
}
1313

1414
::-webkit-scrollbar-thumb {
15-
@apply bg-blue-100 rounded-lg
15+
@apply bg-blue-100 rounded-lg;
1616
}
1717

1818
:root {
19-
@apply bg-ng-background-600
19+
@apply bg-ng-background-600;
2020
}
21-
a, span, label {
22-
@apply font-inter text-gray-5
21+
a,
22+
span,
23+
label {
24+
@apply font-inter text-gray-5;
2325
}
2426

2527
h1 {
26-
@apply font-inter text-white
28+
@apply font-inter text-white;
2729
}
2830

2931
.page-container {
30-
@apply w-96 bg-ng-background-400 text-xl pt-3
32+
@apply w-96 bg-ng-background-400 text-xl pt-3;
3133
}
32-
34+
3335
.no-scrollbar::-webkit-scrollbar {
3436
display: none;
3537
}
36-
38+
3739
.no-scrollbar {
38-
-ms-overflow-style: none;
40+
-ms-overflow-style: none;
3941
scrollbar-width: none;
4042
}
4143

4244
.pane {
43-
@apply bg-ng-background-500 p-2 rounded-lg shadow-md border-2 border-ng-background-800
45+
@apply bg-ng-background-500 p-2 rounded-lg shadow-md border-2 border-ng-background-800;
4446
}
4547

4648
select {
47-
@apply !text-white rounded-md bg-ng-background-300 shadow-inner border-ng-background-400 border-2 !p-2 !text-sm
49+
@apply !text-white rounded-md bg-ng-background-300 shadow-inner border-ng-background-400 border-2 !p-2 !text-sm;
4850
}
49-
}
51+
}

0 commit comments

Comments
 (0)