create login section

This commit is contained in:
HAM!DREZA
2024-05-12 19:19:53 +03:30
parent 8bdefc06f3
commit 774265f2e2
33 changed files with 15508 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Iransans";
src: url(~/public/fonts/IRANSansWebFaNum.woff2) format("woff2");
}
body {
font-family: "Iransans";
direction: rtl;
}
@layer components {
.loginInput{
@apply bg-white rounded-[1.563vw] text-[0.833vw] w-full h-[2.917vw] ps-[1.2vw]
}
.flexBox{
@apply flex items-center justify-center
}
.greenButton{
@apply h-[2.917vw] rounded-[1.563vw] py-[0.833vw] px-[4.167vw] text-white bg-primaryGreen gap-[0.521vw] text-[0.833vw]
}
}