-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathapp.css
More file actions
26 lines (21 loc) · 779 Bytes
/
app.css
File metadata and controls
26 lines (21 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@import 'tailwindcss';
@plugin "daisyui" {
themes: all;
}
@source '../views';
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../vendor/robsontenorio/mary/src/View/Components/**/*.php';
@source '../../vendor/masmerise/livewire-toaster/resources/views/*.blade.php';
@theme {
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
@media (width < 48rem) {
.card {
padding: 0.75rem;
}
}
/* Mary UI's pagination wrapper uses overflow-y-auto, which causes a brief
scrollbar flash during Livewire's DOM morph on page changes. */
.mary-table-pagination > div:last-child {
overflow-y: visible;
}