plugin v1.0.1
Deploy / Deploy (push) Successful in 1m22s
Details
Deploy / Deploy (push) Successful in 1m22s
Details
This commit is contained in:
parent
9d279d6bda
commit
16775f4362
|
|
@ -3,6 +3,36 @@ layout: default
|
||||||
title: "{{ page.file }}"
|
title: "{{ page.file }}"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/* Força o site a voltar ao comportamento normal de bloco (vertical) nesta página */
|
||||||
|
body {
|
||||||
|
display: block !important;
|
||||||
|
overflow-y: auto !important; /* Habilita o scroll vertical */
|
||||||
|
height: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Garante que o rodapé vá para baixo */
|
||||||
|
footer, .footer {
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ajuste fino para a sidebar não quebrar se ela estiver usando flex */
|
||||||
|
.publication {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row; /* Mantém sidebar e content lado a lado SE existirem */
|
||||||
|
min-height: 80vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Em telas menores, empilha a sidebar e o conteúdo */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.publication {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<div class="publication">
|
<div class="publication">
|
||||||
{% include sidebar.html %}
|
{% include sidebar.html %}
|
||||||
<main class="content">
|
<main class="content">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue