plugin v1.0.1
Deploy / Deploy (push) Successful in 1m13s
Details
Deploy / Deploy (push) Successful in 1m13s
Details
This commit is contained in:
parent
bc8313d408
commit
9173e696c3
|
|
@ -3,34 +3,6 @@ layout: default
|
||||||
title: "{{ page.file }}"
|
title: "{{ page.file }}"
|
||||||
---
|
---
|
||||||
|
|
||||||
<style>
|
|
||||||
/* Aplicamos em html E body para garantir que nenhum dos dois trave a rolagem */
|
|
||||||
html, body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
||||||
background-color: var(--bg-body);
|
|
||||||
color: var(--text-light);
|
|
||||||
|
|
||||||
/* --- A CORREÇÃO ESTÁ AQUI --- */
|
|
||||||
display: block !important; /* Desativa o Flexbox do App */
|
|
||||||
height: auto !important; /* Permite que a página cresça além da tela */
|
|
||||||
min-height: 100vh; /* Garante altura mínima */
|
|
||||||
overflow-y: auto !important; /* FORÇA A BARRA DE ROLAGEM VERTICAL */
|
|
||||||
overflow-x: hidden !important; /* Evita rolagem lateral indesejada */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Garante que o rodapé vá para o final */
|
|
||||||
.publication {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column; /* Empilha conteúdo e rodapé verticalmente */
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
flex: 1; /* Faz o conteúdo empurrar o rodapé para baixo */
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div class="publication">
|
<div class="publication">
|
||||||
{% include sidebar.html %}
|
{% include sidebar.html %}
|
||||||
<main class="content">
|
<main class="content">
|
||||||
|
|
|
||||||
|
|
@ -22,17 +22,18 @@
|
||||||
/* =============================================== */
|
/* =============================================== */
|
||||||
/* LAYOUT GERAL
|
/* LAYOUT GERAL
|
||||||
/* =============================================== */
|
/* =============================================== */
|
||||||
body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||||
background-color: var(--bg-body);
|
background-color: var(--bg-body);
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
height: 100vh;
|
|
||||||
/* Removemos overflow hidden para permitir scroll na página de projetos se necessário,
|
/* --- A CORREÇÃO ESTÁ AQUI --- */
|
||||||
ou mantemos se o design for fixed */
|
display: block !important; /* Desativa o Flexbox do App */
|
||||||
overflow-y: auto;
|
height: auto !important; /* Permite que a página cresça além da tela */
|
||||||
display: flex;
|
min-height: 100vh; /* Garante altura mínima */
|
||||||
flex-direction: column;
|
overflow-y: auto !important; /* FORÇA A BARRA DE ROLAGEM VERTICAL */
|
||||||
|
overflow-x: hidden !important; /* Evita rolagem lateral indesejada */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scrollbars Padrão */
|
/* Scrollbars Padrão */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue