@norges-domstoler/dds-components 0.0.0-dev-20240902094424 → 0.0.0-dev-20240902134323

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -3112,6 +3112,20 @@
3112
3112
  border-radius: var(--dds-border-radius-rounded);
3113
3113
  }
3114
3114
 
3115
+ /* src/components/Skeleton/Skeleton.module.css */
3116
+ @keyframes Skeleton_ddsSkeletonAnimation {
3117
+ 0% {
3118
+ opacity: 1;
3119
+ }
3120
+ to {
3121
+ opacity: 0.5;
3122
+ }
3123
+ }
3124
+ .Skeleton_container {
3125
+ animation: Skeleton_ddsSkeletonAnimation 0.75s ease-out infinite alternate;
3126
+ background-color: var(--dds-color-surface-skeleton);
3127
+ }
3128
+
3115
3129
  /* src/components/SkipToContent/SkipToContent.module.css */
3116
3130
  .SkipToContent_wrapper {
3117
3131
  background-color: var(--dds-color-surface-inverse-default);