Files
midnightdust-eu/src/assets/scss/base/_space-content.scss
Martin Prokoph dbd4e1e2e1 Initial commit
2024-02-07 17:31:28 +01:00

58 lines
826 B
SCSS

// | -------------------------------------------------------------
// | Space Content
// | -------------------------------------------------------------
@use 'breakpoint' as *;
.space-content {
> * + *,
> dl > * + * {
margin-top: 1.5rem;
margin-bottom: 0;
}
> h2 {
margin-top: 3rem;
@include breakpoint(large) {
margin-top: 4rem;
}
}
> h3 {
margin-top: 2rem;
@include breakpoint(large) {
margin-top: 3rem;
}
}
> h4 {
margin-top: 1.5rem;
@include breakpoint(large) {
margin-top: 2rem;
}
}
> h5 {
margin-top: 1rem;
@include breakpoint(large) {
margin-top: 1.5rem;
}
}
> h6 {
margin-top: 1rem;
@include breakpoint(large) {
margin-top: 1.5rem;
}
}
> *:first-child {
margin-top: 0;
}
}