Murugan_Temple/public/assets/sass/spacing/_section-space.scss
Alaguraj0361 4785c22a25
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-11-07 10:51:36 +05:30

72 lines
956 B
SCSS

.space,
.space-top {
padding-top: $space;
}
.space,
.space-bottom {
padding-bottom: $space;
}
.space-extra,
.space-extra-top {
padding-top: $space-extra;
}
.space-extra,
.space-extra-bottom {
padding-bottom: $space-extra;
}
.space-extra2,
.space-extra2-top {
padding-top: $space-extra2;
}
.space-extra2,
.space-extra2-bottom {
padding-bottom: $space-extra2;
}
@include md {
.space,
.space-top {
padding-top: $space-mobile;
}
.space,
.space-bottom {
padding-bottom: $space-mobile;
}
.space-extra,
.space-extra-top {
padding-top: $space-mobile-extra;
}
.space-extra,
.space-extra-bottom {
padding-bottom: $space-mobile-extra;
}
.space-top-md-none {
padding-top: 0;
}
.space-extra2,
.space-extra2-top {
padding-top: 70px;
}
.space-extra2,
.space-extra2-bottom {
padding-bottom: 70px;
}
.pb-105 {
padding-bottom: 65px;
}
.pt-105 {
padding-top: 65px;
}
}