forked from forgejo/forgejo
Properly show table on user accounts
- Force semantic to not stack it, and let the overflow be scrollable.
This commit is contained in:
parent
e7876e2f0b
commit
e78db22a03
2 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,7 @@
|
|||
</form>
|
||||
</div>
|
||||
<div class="ui attached table segment">
|
||||
<table class="ui very basic striped table">
|
||||
<table class="ui very basic striped table unstackable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" .SortType false}}</th>
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
.table.segment {
|
||||
padding: 0;
|
||||
font-size: 13px;
|
||||
overflow-x: scroll;
|
||||
|
||||
&:not(.striped) {
|
||||
thead {
|
||||
|
|
Loading…
Add table
Reference in a new issue