diff --git a/addon/components/utils/smart-blob.ts b/addon/components/utils/smart-blob.ts index bf9fcc40..37bd4f51 100644 --- a/addon/components/utils/smart-blob.ts +++ b/addon/components/utils/smart-blob.ts @@ -1,6 +1,6 @@ import Component from '@glimmer/component'; -type Size = 'md' | 'xl'; +type Size = 'sm' | 'md' | 'xl'; interface SmartBlobArgs { loading: boolean; size: Size; diff --git a/app/styles/components/smart-blob.less b/app/styles/components/smart-blob.less index 64bfd792..fc22ae25 100644 --- a/app/styles/components/smart-blob.less +++ b/app/styles/components/smart-blob.less @@ -5,6 +5,16 @@ border-radius: 100%; transition: all 1s ease-in-out; + &--sm { + height: 22px; + width: 22px; + + .smart-blob { + width: 22px; + height: 22px; + } + } + &--xl { height: 64px; width: 64px; diff --git a/tests/dummy/app/templates/application.hbs b/tests/dummy/app/templates/application.hbs index 7d3f529d..e1c9ca40 100644 --- a/tests/dummy/app/templates/application.hbs +++ b/tests/dummy/app/templates/application.hbs @@ -22,6 +22,7 @@ />