63 lines
974 B
CSS
63 lines
974 B
CSS
@tailwind base;
|
|
@tailwind utilities;
|
|
@tailwind components;
|
|
|
|
*::-webkit-scrollbar {
|
|
@apply w-[5px];
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
@apply bg-transparent;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
@apply rounded bg-black dark:bg-white;
|
|
}
|
|
|
|
@layer utilities {
|
|
.content-break {
|
|
word-break: break-word;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.shadow-toolbar {
|
|
box-shadow:
|
|
0 0 #0000,
|
|
0 0 #0000,
|
|
0 8px 24px 0 rgba(0, 0, 0, 0.2),
|
|
0 2px 8px 0 rgba(0, 0, 0, 0.08),
|
|
inset 0 0 0 1px rgba(0, 0, 0, 0.2),
|
|
inset 0 0 0 2px hsla(0, 0%, 100%, 0.14);
|
|
}
|
|
|
|
.shadow-primary {
|
|
box-shadow: 0px 0px 4px rgba(66, 65, 73, 0.14);
|
|
}
|
|
}
|
|
|
|
/*
|
|
Overide some default styles
|
|
*/
|
|
|
|
html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
a {
|
|
@apply cursor-default no-underline !important;
|
|
}
|
|
|
|
button {
|
|
@apply cursor-default focus:outline-none;
|
|
}
|
|
|
|
input::-ms-reveal,
|
|
input::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
line-height: normal;
|
|
}
|