You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
604 B

@font-face {
font-family: IRANSansX-Regular;
src: url(../../assets/font/IRANSansX/Webfonts/fonts/woff/IRANSansX-Regular.woff);
}
$RegularFont:"IRANSansX-Regular";
.header{
font-family: IRANSansX-Regular;
&-search-input{
direction: rtl;
&:focus{
outline: none !important;
}
}
}
.subMenu{
animation: fadeInAnimation ease-in-out 0.5s;
animation-iteration-count: 1;
animation-fill-mode:both;
}
@keyframes fadeInAnimation {
0% {
// height: 0px;
opacity: 0;
}
100% {
height: fit-content;
opacity: 1;
}
}