diff --git a/src/scss/cdb-components/loader.scss b/src/scss/cdb-components/loader.scss index 58b4bf9..67b2df1 100644 --- a/src/scss/cdb-components/loader.scss +++ b/src/scss/cdb-components/loader.scss @@ -52,6 +52,11 @@ This is the generic loader for widgets, maps, components, ... +
+ + + +
@@ -60,6 +65,11 @@ This is the generic loader for widgets, maps, components, ...
+
+ + + +
@@ -68,6 +78,11 @@ This is the generic loader for widgets, maps, components, ...
+
+ + + +
@@ -76,6 +91,11 @@ This is the generic loader for widgets, maps, components, ...
+
+ + + +
``` @@ -83,15 +103,26 @@ This is the generic loader for widgets, maps, components, ... .CDB-LoaderIcon-spinner { animation: rotate 2s linear infinite; - width: 20px; - height: 20px; + width: 16px; + height: 16px; } + +.CDB-LoaderIcon--big .CDB-LoaderIcon-spinner { + width: 40px; + height: 40px; +} + .CDB-LoaderIcon-path { stroke: rgba(255, 255, 255, 0.48); stroke-linecap: round; animation: dash 1.5s ease-in-out infinite; stroke-width: 4px; } + +.CDB-LoaderIcon--big .CDB-LoaderIcon-path { + stroke-width: 2px; +} + .CDB-LoaderIcon.is-dark .CDB-LoaderIcon-path { stroke: rgba(0, 0, 0, 0.24); }