Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MBetterd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mbetter
MBetterd
Commits
a1221ce3
Commit
a1221ce3
authored
Feb 03, 2026
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update container max-width to 98% for all web interface pages
parent
714dd3ac
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
base.html
app/templates/base.html
+1
-1
admin.html
app/templates/main/admin.html
+1
-1
admin_logs.html
app/templates/main/admin_logs.html
+1
-1
admin_users.html
app/templates/main/admin_users.html
+1
-1
fixture_detail.html
app/templates/main/fixture_detail.html
+1
-1
match_detail.html
app/templates/main/match_detail.html
+1
-1
matches.html
app/templates/main/matches.html
+1
-1
statistics.html
app/templates/main/statistics.html
+1
-1
No files found.
app/templates/base.html
View file @
a1221ce3
...
...
@@ -42,7 +42,7 @@
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
}
...
...
app/templates/main/admin.html
View file @
a1221ce3
...
...
@@ -37,7 +37,7 @@
.nav
a
:hover
{
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
background
:
white
;
padding
:
2rem
;
border-radius
:
8px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
.container
{
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
background
:
white
;
padding
:
2rem
;
border-radius
:
8px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
.btn
{
padding
:
8px
16px
;
background-color
:
#007bff
;
color
:
white
;
text-decoration
:
none
;
border-radius
:
4px
;
display
:
inline-block
;
margin
:
0.5rem
0
;
}
.stats-grid
{
display
:
grid
;
grid-template-columns
:
repeat
(
auto-fit
,
minmax
(
250px
,
1
fr
));
gap
:
1rem
;
margin
:
1rem
0
;
}
.stat-card
{
background
:
#f8f9fa
;
padding
:
1.5rem
;
border-radius
:
8px
;
text-align
:
center
;
}
...
...
app/templates/main/admin_logs.html
View file @
a1221ce3
...
...
@@ -37,7 +37,7 @@
.nav
a
:hover
{
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
background
:
white
;
padding
:
2rem
;
border-radius
:
8px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
.container
{
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
background
:
white
;
padding
:
2rem
;
border-radius
:
8px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
.btn
{
padding
:
8px
16px
;
background-color
:
#007bff
;
color
:
white
;
text-decoration
:
none
;
border-radius
:
4px
;
display
:
inline-block
;
margin
:
0.5rem
0
;
}
.log-container
{
max-height
:
600px
;
overflow-y
:
auto
;
background
:
#f8f9fa
;
padding
:
1rem
;
border-radius
:
4px
;
margin-top
:
1rem
;
}
.log-entry
{
margin-bottom
:
1rem
;
padding
:
1rem
;
background
:
white
;
border-radius
:
4px
;
border-left
:
4px
solid
#007bff
;
}
...
...
app/templates/main/admin_users.html
View file @
a1221ce3
...
...
@@ -38,7 +38,7 @@
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
background
:
white
;
...
...
app/templates/main/fixture_detail.html
View file @
a1221ce3
...
...
@@ -38,7 +38,7 @@
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
}
...
...
app/templates/main/match_detail.html
View file @
a1221ce3
...
...
@@ -38,7 +38,7 @@
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
100
%
;
max-width
:
98
%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
}
...
...
app/templates/main/matches.html
View file @
a1221ce3
...
...
@@ -38,7 +38,7 @@
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
}
...
...
app/templates/main/statistics.html
View file @
a1221ce3
...
...
@@ -38,7 +38,7 @@
background-color
:
rgba
(
255
,
255
,
255
,
0.1
);
}
.container
{
max-width
:
1200px
;
max-width
:
98%
;
margin
:
2rem
auto
;
padding
:
0
2rem
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment