summaryrefslogtreecommitdiff
path: root/src/components/Config.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Config.module.scss')
-rw-r--r--src/components/Config.module.scss76
1 files changed, 0 insertions, 76 deletions
diff --git a/src/components/Config.module.scss b/src/components/Config.module.scss
deleted file mode 100644
index 1c178b4..0000000
--- a/src/components/Config.module.scss
+++ /dev/null
@@ -1,76 +0,0 @@
-@use '~/styles/utils/custom-media' as *;
-
-.root {
- max-width: 1000px;
- padding: 30px 20px;
- margin: 0 auto;
- display: flex;
- flex-direction: column;
- gap: 24px;
-
- @media (max-width: 768px) {
- padding: 15px 10px;
- }
-}
-
-.section {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
- gap: 24px;
- align-items: start;
-
- @media (max-width: 768px) {
- grid-template-columns: 1fr;
- }
-}
-
-.wrapSwitch {
- height: 40px;
- display: flex;
- align-items: center;
-}
-
-.sep {
- max-width: 900px;
- padding: 0 15px;
- @media (--breakpoint-not-small) {
- padding: 0 40px;
- }
- > div {
- border-top: 1px dashed var(--color-separator);
- }
-}
-
-.label {
- padding: 10px 0 8px;
- font-size: 0.85rem;
- color: var(--color-text-secondary, #999);
- text-transform: uppercase;
- letter-spacing: 0.5px;
-}
-
-.sectionTitle {
- padding: 10px 0;
- font-weight: bold;
- font-size: 1.1rem;
- margin-bottom: 15px;
- display: flex;
- align-items: center;
- gap: 10px;
- color: var(--color-text-highlight);
-}
-
-.card {
- background: var(--bg-log-info-card);
- border: 1px solid var(--color-separator);
- border-radius: 12px;
- padding: 24px;
- margin-bottom: 24px;
- box-shadow: var(--shadow-card);
- transition: border-color 0.2s ease, box-shadow 0.2s ease;
-
- &:hover {
- border-color: var(--color-focus-blue);
- box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
- }
-}