70 lines
1.9 KiB
SCSS
70 lines
1.9 KiB
SCSS
|
|
// scss-lint:disable SpaceAfterPropertyColon
|
||
|
|
@import 'tailwindcss/base';
|
||
|
|
@import 'tailwindcss/components';
|
||
|
|
@import 'tailwindcss/utilities';
|
||
|
|
|
||
|
|
@import 'shared/assets/fonts/InterDisplay/inter-display';
|
||
|
|
@import 'shared/assets/fonts/inter';
|
||
|
|
|
||
|
|
// Next Colors
|
||
|
|
@import 'next-colors';
|
||
|
|
|
||
|
|
// Base styles for elements
|
||
|
|
@import 'base';
|
||
|
|
|
||
|
|
// Plugins
|
||
|
|
@import 'plugins/multiselect';
|
||
|
|
@import 'plugins/date-picker';
|
||
|
|
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
font-family:
|
||
|
|
'Inter',
|
||
|
|
-apple-system,
|
||
|
|
system-ui,
|
||
|
|
BlinkMacSystemFont,
|
||
|
|
'Segoe UI',
|
||
|
|
Roboto,
|
||
|
|
'Helvetica Neue',
|
||
|
|
Tahoma,
|
||
|
|
Arial,
|
||
|
|
sans-serif !important;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tooltip {
|
||
|
|
@apply bg-n-solid-2 text-n-slate-12 py-1 px-2 z-40 text-xs rounded-md max-w-96;
|
||
|
|
}
|
||
|
|
|
||
|
|
#app {
|
||
|
|
@apply h-full w-full;
|
||
|
|
}
|
||
|
|
|
||
|
|
.custom-dashed-border {
|
||
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%23E2E3E7' stroke-width='2' stroke-dasharray='6, 8' stroke-dashoffset='0' stroke-linecap='round'/%3E%3C/svg%3E");
|
||
|
|
background-position: center;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dark .custom-dashed-border {
|
||
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%23343434' stroke-width='2' stroke-dasharray='6, 8' stroke-dashoffset='0' stroke-linecap='round'/%3E%3C/svg%3E");
|
||
|
|
}
|
||
|
|
|
||
|
|
@layer utilities {
|
||
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
||
|
|
.no-scrollbar::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
||
|
|
.no-scrollbar {
|
||
|
|
-ms-overflow-style: none; /* IE and Edge */
|
||
|
|
scrollbar-width: none; /* Firefox */
|
||
|
|
}
|
||
|
|
}
|