Merge branch 'content' into 'master'

los elementos con la clase content tienen márgenes internos

See merge request sutty/jekyll/sutty-base-jekyll-theme!19
This commit is contained in:
fauno 2021-10-28 12:35:56 +00:00
commit 921d1075b0
2 changed files with 12 additions and 0 deletions

11
_sass/content.scss Normal file
View file

@ -0,0 +1,11 @@
/// Todos los elementos dentro de .content tienen margen inferior, salvo
/// el último, para no modificar el padding y margin del contenedor.
.content {
& > * {
margin-bottom: 1rem;
&:last-child {
margin-bottom: 0;
}
}
}

View file

@ -132,6 +132,7 @@ $label-margin-bottom: 0;
@import "snap";
@import "editor";
@import "menu";
@import "content";
/// La barra de progreso de Turbo tiene el color primario
/// de la paleta, definido por Bootstrap o por nosotres.