mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 22:33:03 -05:00
15 lines
264 B
SCSS
15 lines
264 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
progress {
|
|
@apply h-4 w-full rounded-full bg-gray-200;
|
|
}
|
|
progress::-webkit-progress-bar {
|
|
@apply rounded-full bg-gray-200;
|
|
}
|
|
|
|
progress::-webkit-progress-value {
|
|
@apply rounded-full bg-indigo-600;
|
|
}
|