structure

This commit is contained in:
hamid zarghami
2024-12-23 15:09:11 +03:30
commit 6cb43e42b2
36 changed files with 5071 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
direction: rtl;
}
body {
font-family: irancell;
margin: 0;
padding: 0;
width: 100%;
direction: rtl;
overflow-x: hidden !important;
background: #eceef6;
font-weight: 300;
}
html,
body,
#root {
min-height: 100% !important;
height: 100%;
}
* {
outline: none;
}
input::placeholder,
textarea::placeholder {
color: #888888;
}
@layer components {
.rowTwoInput {
@apply flex flex-col sm:flex-row sm:gap-5 gap-5;
}
}