Skip to content

Commit

Permalink
Add STATUS_IN_SETTINGS feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrench56 committed Jul 2, 2024
1 parent e414e76 commit 371cc9e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/frontend/src/lib/components/settings/Box.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,21 @@
</div>

<style>
/*STATUS_IN_SETTINGS*/
.box {
height: fit-content;
padding: 10px;
margin: 15px 10px 15px 600px;
flex-grow: 1;
border: 1px solid whitesmoke;
}
/*END*/
/*!STATUS_IN_SETTINGS
.box {
height: fit-content;
padding: 10px;
margin: 15px 10px 15px 10;
border: 1px solid whitesmoke;
}
/*END*/
</style>
4 changes: 4 additions & 0 deletions src/frontend/src/routes/settings/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@
import DNotificationContainer from "$lib/notifications/DNotificationContainer.svelte";
</script>

<!--STATUS_IN_SETTINGS-->
<div class="status">
<Header />
<Version />
<Motd />
<Status />
</div>
<!--END-->

<Box>
<SettingsHeader />
Expand All @@ -32,9 +34,11 @@
background-color: black;
}
/*STATUS_IN_SETTINGS*/
.status {
float: left;
overflow: hidden;
width: 550px;
}
/*END*/
</style>

0 comments on commit 371cc9e

Please sign in to comment.