copy dari repo om Irfan

This commit is contained in:
2026-06-13 16:02:07 +10:00
commit db327c0305
5376 changed files with 2770667 additions and 0 deletions
@@ -0,0 +1,23 @@
@mixin font-size($size: 14) {
font-size: $size + px;
font-size: ($size / $root-font-size) + rem;
}
@mixin line-height($size: 14) {
line-height: $size + px;
line-height: ($size / $root-font-size) + rem;
}
@mixin placeholder-color($color) {
&::-webkit-input-placeholder {
color: $color;
}
&::-moz-placeholder {
color: $color;
}
&:-ms-input-placeholder {
color: $color;
}
}