Arno Kaimbacher
cd66f318b6
- add NotificationToast for messages - add leaflet map component and zoom control component - change focus:ring to focus:ring-2 inside BaseButton - `@tailwindcss/line-clamp` plugin is now included by default...remove it from tailwind.config.js - npm updates
20 lines
328 B
CSS
20 lines
328 B
CSS
progress {
|
|
@apply h-3 rounded-full overflow-hidden;
|
|
}
|
|
|
|
progress::-webkit-progress-bar {
|
|
@apply bg-blue-200;
|
|
}
|
|
|
|
progress::-webkit-progress-value {
|
|
@apply bg-blue-500;
|
|
}
|
|
|
|
progress::-moz-progress-bar {
|
|
@apply bg-blue-500;
|
|
}
|
|
|
|
/* progress::-ms-fill {
|
|
@apply bg-blue-500 border-0;
|
|
} */
|
|
|