fix overflow
This commit is contained in:
parent
389c61e44e
commit
19c2ad1a85
|
@ -25,12 +25,12 @@
|
|||
{{#each ctx}}
|
||||
<div class="d-flex flex-row">
|
||||
{{#if is_file}}
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/file/{{path}}" role="button">
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/file/{{path}}" role="button" style="overflow: hidden;">
|
||||
<i class="bi bi-file-earmark"></i>
|
||||
{{name}}
|
||||
</a>
|
||||
{{else}}
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/serve/{{path}}" role="button">
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/serve/{{path}}" role="button" style="overflow: hidden;">
|
||||
<i class="bi bi-folder-fill"></i>
|
||||
{{name}}
|
||||
</a>
|
||||
|
|
|
@ -19,12 +19,12 @@
|
|||
{{#each ctx}}
|
||||
<div class="d-flex flex-row">
|
||||
{{#if is_file}}
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/file/{{path}}" role="button">
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/file/{{path}}" role="button" style="overflow: hidden;">
|
||||
<i class="bi bi-file-earmark"></i>
|
||||
{{name}}
|
||||
</a>
|
||||
{{else}}
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/serve/{{path}}" role="button">
|
||||
<a type="button" class="btn btn-outline-secondary text-start col-sm-3" href="/serve/{{path}}" role="button" style="overflow: hidden;">
|
||||
<i class="bi bi-folder-fill"></i>
|
||||
{{name}}
|
||||
</a>
|
||||
|
|
Loading…
Reference in New Issue
Block a user