2025-04-02 13:24:56 +05:30

16 lines
391 B
SCSS

@use '../_bootstrap-extended/include' as light;
@use '../_bootstrap-extended/include-dark' as dark;
@import '../_custom-variables/pages';
// To remove border end in small screen
@include light.media-breakpoint-down(lg) {
.section-py {
.card-body {
&.border-end {
border: 0 !important;
border-bottom: 1px solid light.$border-color !important;
}
}
}
}