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:
commit
921d1075b0
2 changed files with 12 additions and 0 deletions
11
_sass/content.scss
Normal file
11
_sass/content.scss
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -132,6 +132,7 @@ $label-margin-bottom: 0;
|
||||||
@import "snap";
|
@import "snap";
|
||||||
@import "editor";
|
@import "editor";
|
||||||
@import "menu";
|
@import "menu";
|
||||||
|
@import "content";
|
||||||
|
|
||||||
/// La barra de progreso de Turbo tiene el color primario
|
/// La barra de progreso de Turbo tiene el color primario
|
||||||
/// de la paleta, definido por Bootstrap o por nosotres.
|
/// de la paleta, definido por Bootstrap o por nosotres.
|
||||||
|
|
Loading…
Reference in a new issue