52 lines
730 B
CSS
52 lines
730 B
CSS
@import "tailwindcss";
|
|
|
|
html {
|
|
direction: rtl;
|
|
max-width: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: IRANYekan;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
direction: rtl;
|
|
background: #fff;
|
|
font-feature-settings: "lnum"; /* اطمینان از نمایش اعداد انگلیسی */
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
min-height: 100% !important;
|
|
height: 100%;
|
|
}
|
|
* {
|
|
outline: none;
|
|
}
|
|
input::placeholder,
|
|
textarea::placeholder {
|
|
color: #888888;
|
|
}
|
|
|
|
input.place-black::placeholder {
|
|
color: black;
|
|
}
|
|
|
|
textarea.place-black::placeholder {
|
|
color: black;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-primary: #ff730b;
|
|
--color-secondary: #f1f6fa;
|
|
--color-description: #888888;
|
|
--spacing-maxWidth: 1100px;
|
|
}
|