This commit is contained in:
2025-05-13 09:22:14 +02:00
parent 9e378ca2b7
commit 4a2c1d206e
6 changed files with 32 additions and 29 deletions

View File

@@ -1,3 +1,3 @@
.container-sm { .container-sm {
max-width: 25%; max-width: 25%;
} }/*# sourceMappingURL=login.css.map */

View File

@@ -1,3 +1,3 @@
.col h3 { h3 {
background-color: green; background-color: green;
}/*# sourceMappingURL=index.css.map */ }/*# sourceMappingURL=index.css.map */

View File

@@ -1 +1 @@
{"version":3,"sources":["index.scss","index.css"],"names":[],"mappings":"AACI;EACI,uBAAA;ACAR","file":"index.css"} {"version":3,"sources":["index.scss","index.css"],"names":[],"mappings":"AAAA;EACI,uBAAA;ACCJ","file":"index.css"}

View File

@@ -1,5 +1,3 @@
.col{ h3 {
h3{
background-color: green; background-color: green;
} }
}

View File

@@ -12,13 +12,19 @@ import { Head } from "@inertiajs/vue3";
<Head> <Head>
<title>Transactions</title> <title>Transactions</title>
</Head> </Head>
<div class="row h-50"> <div class="container">
<div class="row">
<div class="col"> <div class="col">
<h3 class="text-center">Incomes</h3> <h3 class="text-center">Incomes</h3>
<table class="table table-striped table-hover table-responsive"> <table
class="table table-striped table-hover table-responsive"
>
<tbody> <tbody>
<tr> <tr>
<td v-for="column in $page.props.incomes.columns"> <td
v-for="column in $page.props.incomes
.columns"
>
{{ column }} {{ column }}
</td> </td>
</tr> </tr>
@@ -31,8 +37,6 @@ import { Head } from "@inertiajs/vue3";
</tbody> </tbody>
</table> </table>
</div> </div>
<div class="col">
<table class="table table-striped"></table>
</div> </div>
</div> </div>
</homeLayout> </homeLayout>

View File

@@ -59,6 +59,7 @@ RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.3
RUN userdel -r ubuntu RUN userdel -r ubuntu
#RUN groupadd --force -g $WWWGROUP sail #RUN groupadd --force -g $WWWGROUP sail
RUN groupadd --force -g sail
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail
COPY start-container /usr/local/bin/start-container COPY start-container /usr/local/bin/start-container