I am using Bootstrap 5 & SCSS for my CSS definition. I know I can include p-2
in html for padding. But how can I refer to that padding in SCSS itself? I don't want to override anything, I just want to be able to do, say:
.x {
color: $gray2;
padding: //one that is same for p-2 - whatever it is
}
I don't want to give that padding the exact px value, because that might change...