Fix alignment of buttons
This commit is contained in:
parent
2ded561ded
commit
3c19ba3a31
3 changed files with 11 additions and 14 deletions
|
@ -108,23 +108,19 @@
|
|||
manually.</p>
|
||||
</details>
|
||||
|
||||
<ul class="buttons card">
|
||||
<div class="buttons card">
|
||||
@foreach (var button in Buttons.Entities.OrderBy(p => p.Title))
|
||||
{
|
||||
<li class="button">
|
||||
<ImageButton Data="button"/>
|
||||
</li>
|
||||
<ImageButton Data="button"/>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<ul class="buttons card">
|
||||
<div class="buttons card">
|
||||
@foreach (var button in Buttons.Things.OrderBy(p => p.Title))
|
||||
{
|
||||
<li class="button">
|
||||
<ImageButton Data="button"/>
|
||||
</li>
|
||||
<ImageButton Data="button"/>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h2 id="webrings">Webrings</h2>
|
||||
<p>Adjacent websites</p>
|
||||
|
|
|
@ -58,10 +58,6 @@
|
|||
list-style: none;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.accounts {
|
||||
flex-direction: column;
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
.button-link {
|
||||
display: inline-block;
|
||||
height: 31px;
|
||||
|
||||
text-decoration: none;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.button-link::after {
|
||||
|
|
Loading…
Add table
Reference in a new issue