Skip to content

Commit 8c954fd

Browse files
authored
Merge pull request #95 from segment-oj/fix-bugs-ztl
Fix bugs ztl
2 parents d7708f4 + 5d59ea6 commit 8c954fd

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
lines changed

src/assets/code_mirror/ayu-mirage.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
.cm-s-ayu-mirage span.cm-comment {
22
color: #5c6773 !important;
3+
font-style: normal !important;
34
}
45

56
.cm-s-ayu-mirage span.cm-atom {
67
color: #ffd580 !important;
78
}
89

10+
.cm-s-ayu-mirage span.cm-string {
11+
color: #bae67e !important;
12+
}
13+
914
.cm-s-ayu-mirage .cm-matchhighlight {
1015
background-color: #323a4c !important;
1116
}

src/assets/code_mirror/monokai.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
color: #75715e !important;
33
}
44

5+
.cm-s-monokai span.cm-string {
6+
color: #e6db74 !important;
7+
}
8+
9+
.cm-s-monokai span.cm-keyword {
10+
color: #f92772 !important;
11+
}
12+
13+
.cm-s-monokai span.cm-operator {
14+
color: #f92772 !important;
15+
}
16+
517
.cm-s-monokai .cm-matchhighlight {
618
background-color: #49483e;
719
}

src/assets/code_mirror/tomorrow.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ span.cm-tag {
3232
}
3333

3434
.cm-s-3024-day span.cm-string {
35-
color: #718c00;
35+
color: #718c00 !important;
3636
}
3737

3838
.cm-s-3024-day span.cm-operator {

src/components/lib/problemTag.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ export default {
6262
border: 1px solid;
6363
box-sizing: border-box;
6464
white-space: nowrap;
65-
margin: 3px;
65+
margin: 0 3px;
6666
}
6767
</style>

src/components/problem/list.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default {
8080
columns: [{
8181
name: 'score',
8282
label: 'Status',
83-
width: '120',
83+
width: '90',
8484
align: 'center',
8585
sortable: true
8686
}, {

src/sfconfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
api: {
3-
server: 'http://localhost:8000/api'
3+
server: 'http://backend.soj.szdytom.tk/api'
44
},
55
markdown: {
66
gfm: true,

0 commit comments

Comments
 (0)