Files
new.anwisystems.com/enterprise/assets/sass/components/title-section/_title-section.scss
T

33 lines
623 B
SCSS
Raw Normal View History

2024-03-08 17:28:57 +05:30
/*******************************
section-title style
*******************************/
.section-title {
padding-bottom: 50px;
.title {
position: relative;
font-size: 30px;
font-weight: fontweight(bold);
text-transform: capitalize;
@include max-screen(480) {
font-size: 20px;
}
&::after {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: 0px;
width: 60px;
height: 2px;
content: "";
background: $theme-color;
}
}
}
/*******************************
section-title style End
*******************************/