diff options
| author | Fuwn <[email protected]> | 2024-10-09 00:41:20 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-09 00:41:43 -0700 |
| commit | 998b63a35256ac985a5a2714dd1ca451af4dfd8a (patch) | |
| tree | 50796121a9d5ab0330fdc5d7e098bda2860d9726 /src/styles/popup.scss | |
| parent | feat(graphql): add badgeCount field (diff) | |
| download | due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.tar.xz due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.zip | |
chore(prettier): use spaces instead of tabs
Diffstat (limited to 'src/styles/popup.scss')
| -rw-r--r-- | src/styles/popup.scss | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/styles/popup.scss b/src/styles/popup.scss index eb4cf628..97b2e3d1 100644 --- a/src/styles/popup.scss +++ b/src/styles/popup.scss @@ -1,25 +1,25 @@ .popup { - position: fixed; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - z-index: 3; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 3; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; } .popup-fullscreen { - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.5); - z-index: 3; - backdrop-filter: blur(8px); + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + z-index: 3; + backdrop-filter: blur(8px); } @media (prefers-color-scheme: light) { - .popup { - background-color: transparent; - } + .popup { + background-color: transparent; + } } |