Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/assets/code_mirror/ayu-mirage.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
.cm-s-ayu-mirage span.cm-comment {
color: #5c6773 !important;
font-style: normal !important;
}

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

.cm-s-ayu-mirage span.cm-string {
color: #bae67e !important;
}

.cm-s-ayu-mirage .cm-matchhighlight {
background-color: #323a4c !important;
}
Expand Down
12 changes: 12 additions & 0 deletions src/assets/code_mirror/monokai.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
color: #75715e !important;
}

.cm-s-monokai span.cm-string {
color: #e6db74 !important;
}

.cm-s-monokai span.cm-keyword {
color: #f92772 !important;
}

.cm-s-monokai span.cm-operator {
color: #f92772 !important;
}

.cm-s-monokai .cm-matchhighlight {
background-color: #49483e;
}
2 changes: 1 addition & 1 deletion src/assets/code_mirror/tomorrow.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ span.cm-tag {
}

.cm-s-3024-day span.cm-string {
color: #718c00;
color: #718c00 !important;
}

.cm-s-3024-day span.cm-operator {
Expand Down
2 changes: 1 addition & 1 deletion src/components/lib/problemTag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ export default {
border: 1px solid;
box-sizing: border-box;
white-space: nowrap;
margin: 3px;
margin: 0 3px;
}
</style>
2 changes: 1 addition & 1 deletion src/components/problem/list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
columns: [{
name: 'score',
label: 'Status',
width: '120',
width: '90',
align: 'center',
sortable: true
}, {
Expand Down
2 changes: 1 addition & 1 deletion src/sfconfig.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
api: {
server: 'http://localhost:8000/api'
server: 'http://backend.soj.szdytom.tk/api'
},
markdown: {
gfm: true,
Expand Down