finally fixed button styling

Orual af0a6317 f2a8d516

+4 -4
+3 -2
crates/weaver-app/assets/styling/button.css
··· 1 .button { 2 padding: 8px 18px; 3 - border: none; 4 - border-radius: 0.5rem; 5 cursor: pointer; 6 font-size: 0.85rem; 7 font-weight: 600; ··· 34 35 .button[data-style="ghost"] { 36 background-color: transparent; 37 color: var(--color-text); 38 } 39 40 .button[data-style="ghost"]:hover { 41 background-color: var(--color-highlight); 42 color: var(--color-emphasis); 43 }
··· 1 .button { 2 padding: 8px 18px; 3 + border: 1px solid var(--color-border); 4 cursor: pointer; 5 font-size: 0.85rem; 6 font-weight: 600; ··· 33 34 .button[data-style="ghost"] { 35 background-color: transparent; 36 + border: none; 37 color: var(--color-text); 38 } 39 40 .button[data-style="ghost"]:hover { 41 + border: none; 42 background-color: var(--color-highlight); 43 color: var(--color-emphasis); 44 }
+1 -2
crates/weaver-app/assets/styling/profile-actions.css
··· 65 .profile-actions-menubar { 66 display: none; 67 gap: 0.5rem; 68 - padding: 1rem 0; 69 - border-bottom: 1px solid var(--color-border); 70 margin-bottom: 1rem; 71 } 72
··· 65 .profile-actions-menubar { 66 display: none; 67 gap: 0.5rem; 68 + padding: 0rem 0; 69 margin-bottom: 1rem; 70 } 71