SCSS:
$thick : 3px;
$pad : 0.5em;
$extra : calc(#{$pad} * 1.2);
$color : #8DC73F;
.footer__links {
a {
color: #333;
padding: $pad $extra;
display: inline-block;
border: $thick solid transparent;
position: relative;
cursor: pointer;
letter-spacing: 0.07em;
}
}
I want to change the value of $pad
for different media queries.
For example:
mobile --> $pad : 0.3em, tablet --> $pad : 0.5em