diff options
| author | alyssaf16 <alyssa_feinberg@brown.edu> | 2024-06-18 15:23:12 -0400 |
|---|---|---|
| committer | alyssaf16 <alyssa_feinberg@brown.edu> | 2024-06-18 15:23:12 -0400 |
| commit | ad32c1606395cdc71ba50eb9b51d3a9d3b707ca0 (patch) | |
| tree | af52ac84663501a1213f26e3ccc8768ee4bc2683 /src/client/views/nodes/ImageBox.scss | |
| parent | 91e465c9ba542b637e66c7091c444a44fdbe4f0c (diff) | |
working on various image flashcard ideas
Diffstat (limited to 'src/client/views/nodes/ImageBox.scss')
| -rw-r--r-- | src/client/views/nodes/ImageBox.scss | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/client/views/nodes/ImageBox.scss b/src/client/views/nodes/ImageBox.scss index 3ffda5a35..be68ac8cd 100644 --- a/src/client/views/nodes/ImageBox.scss +++ b/src/client/views/nodes/ImageBox.scss @@ -139,3 +139,24 @@ .imageBox-fadeBlocker-hover { opacity: 0; } + +.loading-spinner { + position: absolute; + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 100%; + // left: 50%; + // top: 50%; + z-index: 200; + font-size: 20px; + font-weight: bold; + color: #17175e; +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} |
