summaryrefslogtreecommitdiff
path: root/src/components/Root.module.scss
diff options
context:
space:
mode:
authorkunish <[email protected]>2023-01-27 02:56:42 +0800
committerkunish <[email protected]>2023-01-27 15:13:28 +0800
commit48e37a055984a3b895cecfb6a74e5654f05b818f (patch)
tree7905e663bb4c9e00da3f9d0c5ff04c9562937267 /src/components/Root.module.scss
parent11704b9be37c7442ae5c7585e15ed16ef27849ae (diff)
chore: optimize development workflow
Diffstat (limited to 'src/components/Root.module.scss')
-rw-r--r--src/components/Root.module.scss36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/components/Root.module.scss b/src/components/Root.module.scss
deleted file mode 100644
index 95b218e..0000000
--- a/src/components/Root.module.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-.app {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
-
- display: flex;
- background: var(--color-background);
- color: var(--color-text);
-
- @media (max-width: 768px) {
- flex-direction: column;
- }
-}
-
-.content {
- flex-grow: 1;
- overflow-y: auto;
-
- /*
-
- $w: 7px;
- &::-webkit-scrollbar {
- width: $w;
- }
- &::-webkit-scrollbar-thumb {
- border-radius: 20px;
- background-color: rgba(221, 221, 221, 0.7);
- }
- &::-webkit-scrollbar-corner {
- background: transparent;
- }
-
- */
-}