csc loading spinner

This commit is contained in:
tykayn 2025-09-22 09:59:08 +02:00
parent 8a426e6d0e
commit c8d013d57d
11 changed files with 71 additions and 36 deletions

View file

@ -2,7 +2,7 @@ import {StorybookConfig} from '@storybook/angular';
import * as path from 'path';
const config: StorybookConfig = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)', './stories/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-docs',

View file

@ -176,16 +176,4 @@
}
}
// Spinner animation
.spinning {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}