Files
cpost-front/src/app/[locale]/globals.css
azizziy c01e852a59 init
2025-05-20 17:02:10 +05:00

82 lines
1.3 KiB
CSS

:root {
--app-height: 100%;
}
html {
box-sizing: border-box;
scroll-behavior: smooth;
font-size: 16px;
}
body {
margin: 0;
padding: 0;
font-weight: 400;
font-size: 1rem;
font-style: normal;
background-color: #fff;
color: #555351;
font-family: "Inter", "Arial", sans-serif !important;
overflow-x: hidden;
}
.dashboard-layout {
font-family: 'SF Pro Display', sans-serif !important;
}
*,
*::after,
*::before {
box-sizing: inherit;
}
/* *:focus-visible {
outline: 2px dashed #479aff;
outline-offset: 3px;
} */
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
clip: rect(0 0 0 0);
overflow: hidden;
}
.no-select {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* -------------------------- Number input ni chiziqchalarini ko'rsatmaslik ------------------ */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type='number'] {
-moz-appearance: textfield;
}
.brd {
border: 1px solid red !important;
}