style: Reseted padding to container-fluid div in layout template (#8505)

* style: Reseted padding to container-fluid div in layout template

* address comment

Co-Authored-By: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Chris Lu <chris.lu@gmail.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Fábio Henrique Araújo
2026-03-04 19:24:23 -03:00
committed by GitHub
parent df5e8210df
commit 88e8342e44
2 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ templ Layout(view ViewContext, content templ.Component) {
<link rel="stylesheet" href="/static/css/admin.css">
</head>
<body>
<div class="container-fluid">
<div class="container-fluid p-0">
<!-- Header -->
<header class="navbar navbar-expand-lg navbar-dark bg-primary sticky-top">
<div class="container-fluid">
@@ -324,7 +324,7 @@ templ Layout(view ViewContext, content templ.Component) {
</div>
<!-- Main content -->
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4">
<main class="col-md-9 ms-sm-auto col-lg-10 px-3 px-md-4">
<div class="pt-3">
@content
</div>