Skip to content

Commit 6a267d1

Browse files
committed
format css
1 parent 56f6f76 commit 6a267d1

File tree

10 files changed

+170
-170
lines changed

10 files changed

+170
-170
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ charset = utf-8
66
trim_trailing_whitespace = true
77
insert_final_newline = true
88

9-
[*{clj,cljc,cljs,js,edn}]
9+
[*{clj,cljc,cljs,js,edn,css}]
1010
indent_style = space
1111
indent_size = 2
1212

src/renderer/animations.css

+52-52
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
11
@keyframes slideUpAndFade {
2-
from {
3-
opacity: 0;
4-
transform: translateY(2px);
5-
}
6-
to {
7-
opacity: 1;
8-
transform: translateY(0);
9-
}
2+
from {
3+
opacity: 0;
4+
transform: translateY(2px);
5+
}
6+
to {
7+
opacity: 1;
8+
transform: translateY(0);
9+
}
1010
}
1111

1212
@keyframes slideRightAndFade {
13-
from {
14-
opacity: 0;
15-
transform: translateX(-2px);
16-
}
17-
to {
18-
opacity: 1;
19-
transform: translateX(0);
20-
}
13+
from {
14+
opacity: 0;
15+
transform: translateX(-2px);
16+
}
17+
to {
18+
opacity: 1;
19+
transform: translateX(0);
20+
}
2121
}
2222

2323
@keyframes slideDownAndFade {
24-
from {
25-
opacity: 0;
26-
transform: translateY(-2px);
27-
}
28-
to {
29-
opacity: 1;
30-
transform: translateY(0);
31-
}
24+
from {
25+
opacity: 0;
26+
transform: translateY(-2px);
27+
}
28+
to {
29+
opacity: 1;
30+
transform: translateY(0);
31+
}
3232
}
3333

3434
@keyframes slideLeftAndFade {
35-
from {
36-
opacity: 0;
37-
transform: translateX(2px);
38-
}
39-
to {
40-
opacity: 1;
41-
transform: translateX(0);
42-
}
35+
from {
36+
opacity: 0;
37+
transform: translateX(2px);
38+
}
39+
to {
40+
opacity: 1;
41+
transform: translateX(0);
42+
}
4343
}
4444

4545
@keyframes hide {
46-
from {
47-
opacity: 1;
48-
}
49-
to {
50-
opacity: 0;
51-
}
46+
from {
47+
opacity: 1;
48+
}
49+
to {
50+
opacity: 0;
51+
}
5252
}
5353

5454
@keyframes slideIn {
55-
from {
56-
transform: translateX(calc(100% + var(--viewport-padding)));
57-
}
58-
to {
59-
transform: translateX(0);
60-
}
55+
from {
56+
transform: translateX(calc(100% + var(--viewport-padding)));
6157
}
62-
63-
@keyframes swipeOut {
64-
from {
65-
transform: translateX(var(--radix-toast-swipe-end-x));
66-
}
67-
to {
68-
transform: translateX(calc(100% + var(--viewport-padding)));
69-
}
58+
to {
59+
transform: translateX(0);
7060
}
61+
}
62+
63+
@keyframes swipeOut {
64+
from {
65+
transform: translateX(var(--radix-toast-swipe-end-x));
66+
}
67+
to {
68+
transform: translateX(calc(100% + var(--viewport-padding)));
69+
}
70+
}

src/renderer/attribute/styles.css

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
.attribute-grid {
2-
@apply grid grid-cols-2 grid-flow-row my-px w-full gap-px;
3-
grid-template-columns: minmax(100px, auto) 1fr;
2+
@apply grid grid-cols-2 grid-flow-row my-px w-full gap-px;
3+
grid-template-columns: minmax(100px, auto) 1fr;
44
}
55

66
.support-cell {
7-
@apply text-2xs p-px m-px;
7+
@apply text-2xs p-px m-px;
88
}
99

1010
.form-input {
11-
.clear-input-button {
12-
visibility: hidden;
13-
}
11+
.clear-input-button {
12+
visibility: hidden;
13+
}
1414

15-
&:hover,
16-
&:active {
17-
.clear-input-button {
18-
visibility: visible;
19-
}
15+
&:hover,
16+
&:active {
17+
.clear-input-button {
18+
visibility: visible;
2019
}
20+
}
2121
}

src/renderer/codemirror/styles.css

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
.CodeMirror-selected {
2-
@apply overlay !important;
2+
@apply overlay !important;
33
}
44

55
.CodeMirror-cursor {
6-
border-left: 1px solid var(--font-color) !important;
7-
height: 16px !important;
6+
border-left: 1px solid var(--font-color) !important;
7+
height: 16px !important;
88
}
99

1010
.CodeMirror-matchingbracket {
11-
@apply overlay !important;
12-
text-decoration: none !important;
11+
@apply overlay !important;
12+
text-decoration: none !important;
1313
}
1414

1515
.CodeMirror-wrap {
16-
@apply form-element p-0;
16+
@apply form-element p-0;
1717

18-
pre {
19-
word-break: break-word !important;
20-
}
18+
pre {
19+
word-break: break-word !important;
20+
}
2121
}
2222

2323
.CodeMirror-gutters {
24-
@apply bg-secondary !important;
24+
@apply bg-secondary !important;
2525
}
2626

2727
.CodeMirror {
28-
@apply font-mono h-auto z-0;
29-
background: transparent !important;
28+
@apply font-mono h-auto z-0;
29+
background: transparent !important;
3030
}
3131

3232
.CodeMirror-sizer {
33-
min-height: initial !important;
33+
min-height: initial !important;
3434
}
3535

3636
.CodeMirror-lines {
37-
@apply p-0;
37+
@apply p-0;
3838
}

src/renderer/history/styles.css

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
.rd3t-node,
22
.rd3t-leaf-node {
3-
circle {
4-
transition: fill .3s;
5-
}
3+
circle {
4+
transition: fill .3s;
5+
}
66

7-
&:hover {
8-
circle {
9-
stroke : var(--accent);
10-
}
7+
&:hover {
8+
circle {
9+
stroke : var(--accent);
1110
}
11+
}
1212
}
1313

1414
.rd3t-link {
15-
stroke : var(--border-color) !important;
16-
stroke-width: 3;
15+
stroke : var(--border-color) !important;
16+
stroke-width: 3;
1717
}
1818

1919
.rd3t-label__title {
20-
font-weight: normal !important;
21-
fill: inherit !important;
20+
font-weight: normal !important;
21+
fill: inherit !important;
2222
}

src/renderer/reepl/styles.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.repl-item {
2-
@apply font-mono p-0.5 flex text-xs min-h-4;
2+
@apply font-mono p-0.5 flex text-xs min-h-4;
33
}
44

55
.function {
6-
@apply inline-block shrink-0 box-border ;
6+
@apply inline-block shrink-0 box-border;
77
}

src/renderer/styles.css

+9-9
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
font-size: 12px;
9292
box-shadow: none !important;
9393
color: var(--font-color) !important;
94-
94+
9595
&:hover,
9696
&:focus {
9797
color: var(--font-color-active) !important;
@@ -228,7 +228,7 @@ label {
228228

229229
.v-scroll {
230230
@apply box-border overflow-y-auto;
231-
231+
232232
/* scrollbar-gutter: stable; */
233233
}
234234

@@ -259,7 +259,7 @@ pre {
259259
.icon {
260260
display: flex;
261261
justify-content: center;
262-
262+
263263
div {
264264
display: flex;
265265
fill: inherit;
@@ -291,7 +291,7 @@ pre {
291291
&:first-child {
292292
@apply rounded-l ml-0;
293293
}
294-
294+
295295
&:last-child {
296296
@apply rounded-r;
297297
}
@@ -309,7 +309,7 @@ pre {
309309
line-height: 22px;
310310
margin: 0 !important;
311311
border-radius: 2px !important;
312-
312+
313313
svg {
314314
width: 13px;
315315
height: 13px;
@@ -328,7 +328,7 @@ pre {
328328
height: 10px;
329329
width: 10px;
330330
}
331-
331+
332332
.v-divider {
333333
@apply mx-1;
334334
height: 27px;
@@ -375,7 +375,7 @@ pre {
375375
&[data-resize-handle-state="drag"] {
376376
&:after {
377377
background-color: var(--accent);
378-
}
378+
}
379379
}
380380
}
381381

@@ -393,15 +393,15 @@ pre {
393393
@apply drop-shadow-md;
394394

395395
> div {
396-
@apply absolute top-2 left-auto right-2 overflow-hidden font-sans text-sm
396+
@apply absolute top-2 left-auto right-2 overflow-hidden font-sans text-sm
397397
px-2 py-1.5 bg-white text-gray-500 !important;
398398

399399
> div {
400400
@apply left-0 right-0 bottom-0 bg-white !important;
401401

402402
> div {
403403
background-color: var(--accent) !important;
404-
}
404+
}
405405
}
406406
}
407407
}

0 commit comments

Comments
 (0)