Skip to content

Commit 3251c87

Browse files
committed
固定ページ用コンポーネントのcssを調整
1 parent a7c8b21 commit 3251c87

File tree

3 files changed

+13
-18
lines changed

3 files changed

+13
-18
lines changed

assets/css/main.scss

-16
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,3 @@ body {
88
'Hiragino Sans', 'BIZ UDPGothic', Meiryo, sans-serif;
99
line-height: 1.9;
1010
}
11-
12-
h3 {
13-
border-bottom: solid 3px $light;
14-
position: relative;
15-
color: $info;
16-
font-weight: bold;
17-
}
18-
19-
h3:after {
20-
position: absolute;
21-
content: ' ';
22-
display: block;
23-
border-bottom: solid 3px $primary;
24-
bottom: -3px;
25-
width: 30%;
26-
}

components/ContentsBlock.vue

+12-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,20 @@ export default Vue.extend({
2525
margin-bottom: 50px;
2626
}
2727
.content-title {
28+
position: relative;
29+
color: $info;
2830
margin: 16px 0;
2931
padding-bottom: 10px;
30-
border-bottom: 1px solid $primary;
32+
border-bottom: solid 3px $light;
33+
34+
&::after {
35+
position: absolute;
36+
content: ' ';
37+
display: block;
38+
border-bottom: solid 3px $primary;
39+
bottom: -3px;
40+
width: 30%;
41+
}
3142
}
3243
.content-container {
3344
margin-left: 5em;

components/PageTitle.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<h1 class="page-title fs-5">{{ title }}</h1>
2+
<h1 class="page-title fs-3">{{ title }}</h1>
33
</template>
44

55
<script lang="ts">

0 commit comments

Comments
 (0)