plane/apps/app/styles/globals.css
2022-11-30 02:21:17 +05:30

40 lines
637 B
CSS

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: "Inter", sans-serif;
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Scrollbar style */
::-webkit-scrollbar {
height: 10px;
width: 5px;
border-radius: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #a6a5a5;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #908f8f;
}
/* End scrollbar style */