Files
hamid.zarghami1@gmail.com e644edbd65 transfer project in github
2024-05-12 15:29:27 +03:30

34 lines
579 B
SCSS

%defaultTransition {
@include transition(0.3s);
}
%userSelect {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
%appearance {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}
%defaultBoxShadow {
@include boxShadow(0 5px 8px rgba(0, 0, 0, 0.2))
}
%formStyles {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
direction: rtl;
font-family: 'sahel';
border: 1px solid transparent;
background: #fff;
@include borderRadius(2px);
@include transition($trs);
}