82 lines
1.3 KiB
CSS
82 lines
1.3 KiB
CSS
@import "tailwindcss";
|
|
|
|
/* ScoreOdonto Base Styles */
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #c1c1c1;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #a8a8a8;
|
|
}
|
|
|
|
.fc {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.fc-toolbar-title {
|
|
font-size: 1.25rem !important;
|
|
font-weight: 600 !important;
|
|
color: #1f2937;
|
|
}
|
|
|
|
.fc-button-primary {
|
|
background-color: #2563eb !important;
|
|
border-color: #2563eb !important;
|
|
}
|
|
|
|
.fc-daygrid-event {
|
|
border-radius: 4px;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.uppercase-input,
|
|
.uppercase-textarea,
|
|
.uppercase-select {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.dark-date-input::-webkit-calendar-picker-indicator {
|
|
filter: invert(1);
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* FullCalendar Display Fixes */
|
|
.fc {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.fc-theme-standard td,
|
|
.fc-theme-standard th {
|
|
border: 1px solid #e5e7eb !important;
|
|
}
|
|
|
|
.fc-timegrid-slot {
|
|
height: 3em !important;
|
|
}
|
|
|
|
.fc-col-header-cell {
|
|
background-color: #f9fafb;
|
|
padding: 8px 0 !important;
|
|
}
|
|
|
|
.fc-scrollgrid {
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
} |