スクロール

このコミットが含まれているのは:
テクニカル諏訪子 2020-09-21 19:12:30 +09:00
コミット c2a7a84582
3個のファイルの変更25行の追加1行の削除

ファイルの表示

@ -11,7 +11,7 @@
<cite class="fn">{{ (c.name || '名無しのテクニシャン') }}</cite> <span class="says">より:</span>
<span class="comment-meta commentmetadata"> <a :href="`/blog/${slug}#comment-${c.id}`">{{ c.created }}</a></span>
</div>
<p>{{ c.message }}</p>
<p style="white-space: pre-wrap;">{{ c.message }}</p>
<div class="reply">返信</div>
</div>
</li>

21
resources/sass/_scroll.scss vendored ノーマルファイル
ファイルの表示

@ -0,0 +1,21 @@
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-thumb {
background: $suwa03;
transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
background: $suwa01;
}
::-webkit-scrollbar-thumb:active {
background: $suwa08;
}
::-webkit-scrollbar-track {
background-color: $white1;
background: $black1;
}

ファイルの表示

@ -19,6 +19,9 @@
// コンテンツ
@import "contents";
// スクロール
@import "scroll";
// コンポーネント
@import "conponent/badge";
@import "conponent/button";