summaryrefslogtreecommitdiff
path: root/src/components/ModalCloseAllConnections.module.scss
diff options
context:
space:
mode:
authorHaishan <[email protected]>2021-06-06 00:32:24 +0800
committerHaishan <[email protected]>2021-06-06 00:33:22 +0800
commit5ff2f89afb71fd2976c487692ec73085241e09c7 (patch)
treefe7a53d8839b1406e4ff31a2fa8a543669c7693f /src/components/ModalCloseAllConnections.module.scss
parent25dbe5eff483bfdceec677b13ad4ec905c5fe566 (diff)
Stop use postcss-nested postcss-extend-rule
Diffstat (limited to 'src/components/ModalCloseAllConnections.module.scss')
-rw-r--r--src/components/ModalCloseAllConnections.module.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/ModalCloseAllConnections.module.scss b/src/components/ModalCloseAllConnections.module.scss
new file mode 100644
index 0000000..9bb7c6a
--- /dev/null
+++ b/src/components/ModalCloseAllConnections.module.scss
@@ -0,0 +1,23 @@
+.overlay {
+ background-color: rgba(0, 0, 0, 0.6);
+}
+.cnt {
+ background-color: var(--bg-modal);
+ color: var(--color-text);
+ max-width: 300px;
+ line-height: 1.4;
+ transform: translate(-50%, -50%) scale(1.2);
+ opacity: 0.6;
+ transition: all 0.3s ease;
+}
+.afterOpen {
+ opacity: 1;
+ transform: translate(-50%, -50%) scale(1);
+}
+
+.btngrp {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin-top: 30px;
+}