diff --git a/index.html b/index.html index b4fc607..4004b24 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ margin: 0; padding: 0; overflow: hidden; - border-radius: 10px; + /* border-radius: 10px; */ } diff --git a/src/layout/MainLayout.vue b/src/layout/MainLayout.vue index 61c7a3f..fae77fa 100644 --- a/src/layout/MainLayout.vue +++ b/src/layout/MainLayout.vue @@ -25,7 +25,7 @@ const isMacos = navigator.userAgent.includes("Mac OS X") height: 100vh; background: var(--color-window-bg); backdrop-filter: blur(20px); - border: 1px solid var(--color-border); + // border: 1px solid var(--color-border); :deep(.n-layout) { background: transparent; diff --git a/src/layout/components/MacTitleBar.vue b/src/layout/components/MacTitleBar.vue index a66f3b4..98b13da 100644 --- a/src/layout/components/MacTitleBar.vue +++ b/src/layout/components/MacTitleBar.vue @@ -53,7 +53,7 @@ function close() { width: 12px; height: 12px; padding: 0; - border-radius: 50%; + border-radius: var(--radius-sm); border: 0.5px solid rgba(0, 0, 0, 0.15); display: flex; align-items: center; diff --git a/src/layout/components/WindowsTitleBar.vue b/src/layout/components/WindowsTitleBar.vue index 22705b8..1332854 100644 --- a/src/layout/components/WindowsTitleBar.vue +++ b/src/layout/components/WindowsTitleBar.vue @@ -51,7 +51,7 @@ function close() { .dot { width: 8px; height: 8px; - border-radius: 50%; + border-radius: var(--radius-sm); background: var(--color-accent-gradient); } } diff --git a/src/views/Home.vue b/src/views/Home.vue index 8e684d5..cc66a43 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -336,6 +336,7 @@ onMounted(() => { box-shadow: var(--shadow-card); cursor: pointer; transition: color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; + margin-right: 10px; &:hover { color: var(--color-accent);