Skip to content

Commit b324310

Browse files
committed
span -> h1
Signed-off-by: gzezFISHER <fisher070305@163.com>
1 parent 09d46a7 commit b324310

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/assets/css/basic.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
margin: 20px 0 20px 0;
4848
}
4949

50-
.markdown-container h1,
50+
h1,
5151
h2,
5252
h3,
5353
h4,

src/components/problem/content.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<i class="el-icon-arrow-left"></i>
1212
</div>
1313
<div style="display: flex;">
14-
<div id="title" class="header text-bold">#{{pid}}. {{ title }}</div>
14+
<h1 id="title" class="header">#{{pid}}. {{ title }}</h1>
1515
</div>
1616
<MarkdownContainer v-if="description" :content="description" :allowHTML="this.allowHTML"/>
1717
</div>

src/components/problem/edit.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<span class="text-extra-big">Edit problem #{{this.$route.params.id}}</span>
3+
<h1>Edit problem #{{this.$route.params.id}}</h1>
44
<h3 class="no-bottom-margin">Problem Name</h3>
55
<el-input v-model="title" placeholder="input problem title here"></el-input>
66
<h3 class="no-bottom-margin">Problem Content</h3>

src/components/problem/submit.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<span class="text-extra-big">Submit problem #{{this.$route.params.id}}</span>
3+
<h1>Submit problem #{{this.$route.params.id}}</h1>
44
<el-select v-model="lang_num" placeholder="Select language">
55
<el-option
66
v-for="item in options"

0 commit comments

Comments
 (0)