このコミットが含まれているのは:
守矢諏訪子 2022-03-01 11:48:05 +09:00
コミット dfd5913e9f
2個のファイルの変更6行の追加3行の削除

ファイルの表示

@ -249,12 +249,15 @@ table .label.sub-label, table .sub-label.sub-label {
}
a {
display: block;
width: -moz-fit-content;
width: fit-content;
margin-top: 3px;
}
.ablock {
display: block;
}
.main-row.network {
min-height: calc(100vh - 110px) !important;
}

ファイルの表示

@ -4,13 +4,13 @@
<div class="col-xl-6 col-md-12">
<h2 class="subtitle">フォロワーのインスタンス({{ $res['follower']->total }})</h2>
@foreach ($res['follower']->data as $x)
<a target="_blank" rel="noopener noreferrer" href="https://{{ $x->follower->host }}"> {{ $x->follower->host }} </a>
<a class="ablock" target="_blank" rel="noopener noreferrer" href="https://{{ $x->follower->host }}"> {{ $x->follower->host }} </a>
@endforeach
</div>
<div class="col-xl-6 col-md-12">
<h2 class="subtitle">フォローしてるインスタンス({{ $res['following']->total }})</h2>
@foreach ($res['following']->data as $y)
<a target="_blank" rel="noopener noreferrer" href="https://{{ $y->following->host }}"> {{ $y->following->host }} </a>
<a class="ablock" target="_blank" rel="noopener noreferrer" href="https://{{ $y->following->host }}"> {{ $y->following->host }} </a>
@endforeach
</div>
</div>