8000 Replace .page-center with .my-auto in single page layouts by srsbiz · Pull Request #2009 · tabler/tabler · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Replace .page-center with .my-auto in single page layouts #2009

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fluffy-papayas-greet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@tabler/core": patch
---

Replace `.page-center` with `.my-auto` in single page layouts
2 changes: 1 addition & 1 deletion src/pages/_layouts/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
body-class: border-top-wide border-primary d-flex flex-column
---

<div class="page page-center">
<div class="page my-auto">
<div class="container-tight py-4">
{% assign error = site.data.errors[page.error] %}
{% assign header = error.header | default: 'Oops… You just found an error page' %}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_layouts/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
body-class: d-flex flex-column
---

<div class="page page-center">
<div class="page my-auto">
<div class="container container-{{ page.container-size | default: 'tight' }} py-4">

{% unless page.hide-logo %}
Expand Down
0