aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/Annotation.scss
diff options
context:
space:
mode:
authoralyssaf16 <alyssa_feinberg@brown.edu>2024-06-13 14:37:37 -0400
committeralyssaf16 <alyssa_feinberg@brown.edu>2024-06-13 14:37:37 -0400
commit91e465c9ba542b637e66c7091c444a44fdbe4f0c (patch)
tree529c8599dbb0cd1d31472293863d970d59a10319 /src/client/views/pdf/Annotation.scss
parent39784e909c68f139bb537151294d8db56d021158 (diff)
create flashcard stack and ui fixes
Diffstat (limited to 'src/client/views/pdf/Annotation.scss')
-rw-r--r--src/client/views/pdf/Annotation.scss19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/client/views/pdf/Annotation.scss b/src/client/views/pdf/Annotation.scss
index 1de60ffed..329819ea2 100644
--- a/src/client/views/pdf/Annotation.scss
+++ b/src/client/views/pdf/Annotation.scss
@@ -7,4 +7,21 @@
&:hover {
cursor: pointer;
}
-} \ No newline at end of file
+}
+.loading-spinner {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 90%;
+ width: 93%;
+ left: 10;
+ font-size: 20px;
+ font-weight: bold;
+ color: #0b0a0a;
+}
+
+@keyframes spin {
+ to {
+ transform: rotate(360deg);
+ }
+}