Skip to content

Commit b119044

Browse files
committed
Harmonize button styles
1 parent 58dedb9 commit b119044

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

pcd-website/src/components/NodeList.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ function handleKeydown(e: KeyboardEvent) {
172172
}
173173
174174
.list-close:hover {
175-
background: #f5f5f5;
175+
background: var(--color-primary);
176+
color: #fff;
177+
border-color: var(--color-primary);
176178
}
177179
178180
.list-items {

pcd-website/src/styles/global.css

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,21 +144,23 @@ body {
144144
z-index: var(--z-controls);
145145
width: 44px;
146146
height: 44px;
147-
background: var(--color-bg);
148-
border: 2px solid var(--color-border);
149-
border-radius: 6px;
147+
background: var(--color-bg-popup);
148+
border: 1px solid var(--color-border);
149+
border-radius: 8px;
150150
cursor: pointer;
151151
font-size: 1.25rem;
152152
color: var(--color-text);
153153
display: flex;
154154
align-items: center;
155155
justify-content: center;
156-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
157-
transition: background-color 0.15s ease;
156+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
157+
transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
158158
}
159159

160160
#burger-btn:hover {
161-
background: var(--color-border);
161+
background: var(--color-primary);
162+
color: #fff;
163+
border-color: var(--color-primary);
162164
}
163165

164166
/* ─── Leaflet Popup Overrides ───────────────────────────────── */

0 commit comments

Comments
 (0)