Files
banu-front/src/assets/styles/_reset.scss
T
sajjadtalkhabi 36b747d267 fix: bugs
2026-07-30 17:38:27 +03:30

63 lines
970 B
SCSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 106.25%;
}
body {
margin: 0 !important;
padding: 0 !important;
font-family: var(--font-family-primary), sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
overflow-x: hidden;
}
.dir-rtl {
direction: rtl;
}
.scrollbar-thin {
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: #d1d5db transparent;
}
.scrollbar-thin::-webkit-scrollbar {
width: 3px;
height: 3px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background: #d1d5db;
border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.animate-spin {
animation: spin 1s linear infinite;
transform-origin: center;
}