summaryrefslogtreecommitdiff
path: root/src/index.scss
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2020-12-21 16:11:17 +0100
committerDaniel Weipert <code@drogueronin.de>2020-12-21 16:11:17 +0100
commit0d1da4356173e926fdcac42462daa4fcb7617109 (patch)
tree79535a3dca38b60c1ca93ff351c00e1464b0536b /src/index.scss
Initial commit
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;
+ }
+ }
+}