summaryrefslogtreecommitdiff
path: root/src/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.scss')
-rw-r--r--src/index.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/index.scss b/src/index.scss
new file mode 100644
index 0000000..124d799
--- /dev/null
+++ b/src/index.scss
@@ -0,0 +1,23 @@
+.post-order-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ background: rgba(0, 0, 0, 0.8);
+ display: none;
+
+ &--visible {
+ display: block;
+ }
+}
+
+#the-list {
+
+ tr {
+
+ &.ui-sortable-handle {
+ cursor: move;
+ }
+ }
+}