mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* rename frontend to web and update contributing guide * rename this time * fix build * restructure rust code * update documentation * update descriptions * Update CONTRIBUTING.md Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com>
58 lines
1.2 KiB
HTML
58 lines
1.2 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button defaultHref="/"></ion-back-button>
|
|
</ion-buttons>
|
|
<ion-title>Logs</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content
|
|
[scrollEvents]="true"
|
|
(ionScrollEnd)="scrollEnd()"
|
|
class="ion-padding"
|
|
>
|
|
<ion-infinite-scroll
|
|
id="scroller"
|
|
*ngIf="!loading && needInfinite"
|
|
position="top"
|
|
threshold="0"
|
|
(ionInfinite)="doInfinite($event)"
|
|
>
|
|
<ion-infinite-scroll-content
|
|
loadingSpinner="lines"
|
|
></ion-infinite-scroll-content>
|
|
</ion-infinite-scroll>
|
|
|
|
<div id="container">
|
|
<div id="template" style="white-space: pre-line"></div>
|
|
</div>
|
|
|
|
<div id="bottom-div"></div>
|
|
|
|
<div
|
|
[ngStyle]="{
|
|
'position': 'fixed',
|
|
'bottom': '50px',
|
|
'right': isOnBottom ? '-52px' : '30px',
|
|
'border-radius': '100%',
|
|
'transition': 'right 0.25s ease-out'
|
|
}"
|
|
>
|
|
<ion-button
|
|
style="
|
|
width: 50px;
|
|
height: 50px;
|
|
--padding-start: 0px;
|
|
--padding-end: 0px;
|
|
--border-radius: 100%;
|
|
"
|
|
color="dark"
|
|
(click)="scrollToBottom()"
|
|
strong
|
|
>
|
|
<ion-icon name="chevron-down"></ion-icon>
|
|
</ion-button>
|
|
</div>
|
|
</ion-content>
|