los elementos con la clase content tienen márgenes internos
This commit is contained in:
parent
5b052a5b19
commit
efea1fe88d
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 "editor";
|
||||
@import "menu";
|
||||
@import "content";
|
||||
|
||||
/// La barra de progreso de Turbo tiene el color primario
|
||||
/// de la paleta, definido por Bootstrap o por nosotres.
|
||||
|
|
Loading…
Reference in a new issue